gpt4 book ai didi

python - Panda 的写入 CSV - 追加与写入

转载 作者:IT老高 更新时间:2023-10-28 22:13:47 26 4
gpt4 key购买 nike

如果“文件名”不存在,我想使用 pd.write_csv 写入“文件名”(带有标题),否则如果存在,则附加到“文件名”。如果我只是使用命令:

     df.to_csv('filename.csv',mode = 'a',header ='column_names')

写入或追加成功,但似乎每次追加时都会写入标题。

如果文件不存在,我怎样才能只添加标题,如果文件存在,我怎样才能不添加标题?

最佳答案

不确定 pandas 中是否有方法,但检查文件是否存在将是一种简单的方法:

import os
# if file does not exist write header
if not os.path.isfile('filename.csv'):
df.to_csv('filename.csv', header='column_names')
else: # else it exists so append without writing the header
df.to_csv('filename.csv', mode='a', header=False)

关于python - Panda 的写入 CSV - 追加与写入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30991541/

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