gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-03 21:13:48 27 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/54861631/

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