自己平时其实也很少用到csv,今天有个特殊需求,也就不得不用了。但是出现了空白行。
with open(zentao_file, 'w', encoding='utf8') as f:
writer = csv.writer(f)
writer.writerows(zentao_testcase_rows)
logging.info('Convert XMind file(%s) to a zentao csv file(%s) successfully!', xmind_file, zentao_file)
return zentao_file
1、查看打开mode的源码看看
2、分析
其实大概意思就是:
w是以文本方式打开文件,wb是二进制方式打开文件,以文本方式打开文件时,fwrite函数每碰到一个0x0A时,就在它的前面加入0x0D.其它内容不做添加操作。所以换成wb
3、运行结果:
这是逗我呢,如下
4、再分析:
看上边的意思应该是要去掉encoding,那就去掉吧,结果是还是报错,其实原则上是已经OK了,只是我的代码中间做了一些格式转换可能导致问题,那要修改大量代码,算了,再看看其他的方法
经过查阅资料,只需要在打开的的最后加上newline=’'就可以了,试试吧
with open(zentao_file, 'w', encoding='utf8', newline='') as f:
writer = csv.writer(f)
writer.writerows(zentao_testcase_rows)
logging.info('Convert XMind file(%s) to a zentao csv file(%s) successfully!', xmind_file, zentao_file)
return zentao_file