使用python panda将文本转换为csv [已关闭]

8ulbf1ek  于 2022-12-06  发布在  Python
关注(0)|答案(1)|浏览(143)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题吗?**通过editing this post添加详细信息并阐明问题。

上个月关门了。
Improve this question
我想将文本文件转换为csv文件

import pandas as pd
    readfile = pd.read_csv(r'text.txt')
    readfile.to_csv(r'CSV.csv, index=None)

我文本文件格式:

结果是:

在红色圆圈中,它添加了一个小数,后面的数据是重复的,我不希望它添加小数
请建议我下一步该做什么,谢谢。
如果有可能读取文件并转换为csv限制列,请告知!

icnyk63a

icnyk63a1#

#just add header = None, since first line of txt is considered header that's why it is managing duplicate column names.
import pandas as pd
readfile = pd.read_csv(r'text.txt',header=None)
readfile.to_csv(r'CSV.csv, index=None)

#sample example output of readfile
        0   1   2   3   4     5   6 7   8
    0   1   2   3   5   0.0 0.0 0.0 4   6

相关问题