Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以指定 csv 模块在写入文件时将使用的分隔符?
例如,使用 ';' 代替 ',' 或者其他的东西?
我知道您可以通过设置更改为制表符分隔dialect='excel-tab,但不确定是否可以自由选择分隔符。
dialect='excel-tab
谢谢
我相信你可以设置delimiter:
delimiter
writer = csv.writer(csvfile,delimiter=';')
在文档中也有一个例子csv.writer
csv.writer