我正在使用python中的大型数据框,其中每行需要转换为文本文档。我的代码导致iPython终端崩溃并重新启动从未通过数据框的第一行。 df能够正确加载,但转换无法正确运行。
是否存在将行转换为单个文本文档的解决方法或其他方法?
import pandas
df = pandas.read_excel(open('C:\\example.xlsx','rb'), sheetname='list')
i =0
for row in df.values:
file_title = 'C:\\document{}.txt'.format(i)
row.tofile(file_title, sep=",", format="%s")
i+0