Below, you will see a for loop example for listing the file names in a folder. import os for root, dirs, files in os.walk("."): for filename in ...
確定! 回上一頁