Answers for "python print contents of folder"

0

python program to print the contents of a directory using os module

import os
li = os.listdir(".")
print(li)
Posted by: Guest on February-24-2021

Code answers related to "python print contents of folder"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language