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模块写入有空行问题的主要内容,如果未能解决你的问题,请参考以下文章