Python Tutorial: Retrieving All Files in a Directory

preview_player
Показать описание
How to get the list of all files in a directory in Python?
Рекомендации по теме
Комментарии
Автор

So one the other content creators I follow, usually make community quizes (indently). They're just posted polls on yt. imo, I think like "top 5 reasons to use 'os' package in python." would be good shorts. Then for longer content you could link a video that goes over all the general use-cases for the package. Then if they have several sub packages, it would break down those as well.

KeiraraVT
Автор

Thoughts on quick snappy Python video quiz's? I thought it might be fun while I work through planning full courses

MakeDataUseful
Автор

Here’s a fun code to list and print all the files in the directory of the program!!

Import os
Files = []

For file in os.listdir():
files.append(file)
Print(files)

nyhrocx
join shbcf.ru