python csv模块写入有空行问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python csv模块写入有空行问题相关的知识,希望对你有一定的参考价值。

默认在open(‘data.csv’,‘w+‘)模式下会有空行。在open后面添加newline=‘’ 即可解决。

https://stackoverflow.com/questions/41045510/pandas-read-csv-ignore-rows-after-a-blank-line

with open("data_a.csv","w",newline=‘‘) as csvfile:
    fieldnames = ["id","title"]
    writer=csv.DictWriter(csvfile,fieldnames=fieldnames)
    writer.writeheader()
    writer.writerow({"id":123,"title":"New title"})
    writer.writerow({"id":345,"title":"test "})

  

以上是关于python csv模块写入有空行问题的主要内容,如果未能解决你的问题,请参考以下文章

使用 Python 写入 CSV 会添加空行 [重复]

Python - csv writer 按列而不是按行写入

解决Python 字典写入文件出行首行有空格的解决方法

在R语言 中如何把list对象逐行写入csv文件中

python web抓取并将数据写入csv

在csv python中编写查询行