Answers for "python open a folder and open every file in it"

3

python open each file in directory

import os
for filename in os.listdir(os.getcwd()):
   with open(os.path.join(os.cwd(), filename), 'r') as f:
Posted by: Guest on July-03-2020

Code answers related to "python open a folder and open every file in it"

Python Answers by Framework

Browse Popular Code Answers by Language