Answers for "syntax for listdir in python"

0

list directory in python

from os import listdir

## Prints the current directory as a list (including file types)
print(os.listdir())
Posted by: Guest on April-23-2020

Python Answers by Framework

Browse Popular Code Answers by Language