我在一个文件夹中有 100 个 txt 文件(名为 pos)。我想复制所有文件内容并将它们作为行粘贴到 Excel 文件中。我从 stackoverflow 中找到了一些代码,但它们不起作用。请帮我。
import xlwt
import os
import glob
wbk = xlwt.Workbook()
sheet = wbk.add_sheet('data')
path= 'C:\tweet\pos'
row = 0
for files in os.walk(path):
... for file in files:
... if fnmatch(file, '*.txt'):
... L = open(os.path.join( file), "r").read()
... sheet.write(row,5,L)
... row += 1
...
wbk.save('read_all_txt_in_folders.xls')