Panda's Write CSV - Append vs. Write

后端 未结 3 672
眼角桃花
眼角桃花 2020-11-30 00:10

I would like to use pd.write_csv to write \"filename\" (with headers) if \"filename\" doesn\'t exist, otherwise to append to \"filename\" if it exists. If I simply use co

3条回答
  •  离开以前
    2020-11-30 01:13

    In Pandas dataframe "to_csv" function, use header=False if csv file exists & append to existing file.

        import os
    
        hdr = False  if os.path.isfile('filename.csv') else True
        df.to_csv('filename.csv', mode='a', header=hdr)
    

提交回复
热议问题