Answers for "how to loop through current directory python"

10

python loop through files in directory

import os

for filename in os.listdir(directory):
    if filename.endswith(".asm") or filename.endswith(".py"): 
         # print(os.path.join(directory, filename))
        continue
    else:
        continue
Posted by: Guest on May-11-2020

Code answers related to "how to loop through current directory python"

Python Answers by Framework

Browse Popular Code Answers by Language