将数据框中的行转换为.txt文档

时间:2017-10-13 03:13:32

标签: python python-3.x

我正在使用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

0 个答案:

没有答案