如何从白细胞中去除细胞

时间:2019-01-08 08:40:33

标签: python

当我在文本编辑器中运行以下简单语法时,它非常安静: Syntax 然后输出: output 问题是如何删除列,直到得到此列:

[csv create without python

1 个答案:

答案 0 :(得分:0)

以二进制模式打开文件:with open(file, 'w+b') as csv_file:

或将newline设置为空字符串:with open(file, 'w+', newline='') as csv_file:

来源:https://stackoverflow.com/a/3191811/6685140