您的位置:首页 > 编程语言 > Python开发

Python 中通过csv的writerow输出的内容有多余空行的解决办法

2017-12-17 17:46 609 查看
Python中,通过csv的writerow输出内容:

?
?
结果却发现输出了csv中,每一行row之后,有个多余的空行:





用excel打开后,效果如下:





现在需要去掉这个多余的空行。

【解决过程】

1.去查了查writerow:

http://docs.python.org/2/library/csv.html#writer-objects


13.1.4. Writer Objects

Writer objects (DictWriter instances and objects returned by the writer() function)
have the following public methods. A row must be a sequence of strings or numbers for Writer objects and a dictionary mapping fieldnames to strings or numbers (by passing them through str() first)
for DictWriter objects. Note that complex numbers are written out surrounded by parens. This may cause some problems for
other programs which read CSV files (assuming they support complex numbers at all).
csvwriter.writerow(row)
Write the row parameter to the writer’s file object, formatted according to the current dialect.

csvwriter.writerows(rows)
Write all the rows parameters (a list of row objects as described above) to the writer’s file object, formatted according to the current dialect.

但是貌似没太大帮助。

2.后来注意到,输出的csv的效果是:

行末是CR

然后才是一个CRLF的换行:





所以,要搞清楚,CR和CRLF 分别是谁输出的。

3.后来参考:

Extraneous newlines with csv.writer on Windows

说是,使用binary模式即可。

所以把:

?
去改为:

?
试试,结果是,

标题那一行,由于是二进制的wb打开的文件,所以OK了,没有多余的CR了

但是其余的各行,由于是文本方式的a+打开的,结果还是有多余的CR:





4.所以再去改为:

?
试试效果,结果终于可以了:

CSV中,没有了多余的CR了,只有行尾的CRLF:





对应的excel中,也可以显示正常,没有多余的空行了:





【总结】

Python中的csv的writer,打开文件的时候,要小心,

要通过binary模式去打开,即带b的,比如wb,ab+等

而不能通过文本模式,即不带b的方式,w,w+,a+等,否则,会导致使用writerow写内容到csv中时,产生对于的CR,导致多余的空行。
转自:https://www.crifan.com/python_csv_writer_writerow_redundant_new_line/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python csv