read all the text file in directory code example
Example: 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)