gpt4 book ai didi

python - 如何避免 Pandas 在保存的 csv 中创建索引

转载 作者:IT老高 更新时间:2023-10-28 12:07:05 26 4
gpt4 key购买 nike

在对文件进行一些编辑后,我试图将 csv 保存到文件夹中。

每次我使用 pd.to_csv('C:/Path of file.csv') csv 文件都有一个单独的索引列。我想避免将索引打印到 csv。

我试过了:

pd.read_csv('C:/Path to file to edit.csv', index_col = False)

然后保存文件...

pd.to_csv('C:/Path to save edited file.csv', index_col = False)

但是,我仍然得到了不需要的索引列。保存文件时如何避免这种情况?

最佳答案

使用 index=False

df.to_csv('your.csv', index=False)

关于python - 如何避免 Pandas 在保存的 csv 中创建索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20845213/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com