Answers for "read all text files in a directory python"

-3

python read all text files in directory

import os
from re import search

arr = os.listdir()
strtxt = ".txt"
for txtfile in arr:
    if txtfile.__contains__(strtxt):
        fileObject = open(txtfile, "r")
        data = fileObject.read()
        print(data)
Posted by: Guest on December-22-2020
0

python glob how to read all txt files in folder

import glob
glob.glob('*.txt')
Posted by: Guest on December-04-2020

Code answers related to "read all text files in a directory python"

Python Answers by Framework

Browse Popular Code Answers by Language