предположим, что у нас много текстовых файлов:
file1:
abc
def
ghi
file2:
abc
def
ghi
file3:
adfafa
file4:
ewrtwe
rewrt
wer
wrwe
Как мы можем сделать один текстовый файл, как показано ниже:
результат:
abc
def
ghi
ABC
DEF
GHI
adfafa
ewrtwe
rewrt
wer
wrwe
Связанный код может быть:
import csv
import glob
files = glob.glob('*.txt')
for file in files:
with open('result.txt', 'w') as result:
result.write(str(file)+'\n')
После этого? Любая помощь?