Answers for "python read all text files in directory"

-2

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
-1

python search all txts in a folder

index_file =  open('index.txt', 'r')
    for line in index_file:
       ....
Posted by: Guest on December-12-2020

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

Python Answers by Framework

Browse Popular Code Answers by Language