“Список путей Python” Ответ

Файлы списка Python в текущем каталоге

import os

files = os.listdir('.')
print(files)
for file in files:
  # do something
  
Soggy Boi

Список путей Python

#see a list of all available paths
import os
os.listdir(path='.') #Where '.' denotes the same location. For subfolders:
os.listdir(path='./subfoldername' # you can go deeper and deeper using the same method
Bewildered Boar

Ответы похожие на “Список путей Python”

Вопросы похожие на “Список путей Python”

Смотреть популярные ответы по языку

Смотреть другие языки программирования