Answers for "python code to read only the file form current dir"

18

python list files in current directory

import os

files = os.listdir('.')
print(files)
for file in files:
  # do something
Posted by: Guest on November-04-2020
0

how to make all my files to work together in python

>>> import os
>>> entries = os.listdir('my_directory/')
Posted by: Guest on September-03-2020

Code answers related to "python code to read only the file form current dir"

Python Answers by Framework

Browse Popular Code Answers by Language