因此,当我使用csv writer打印出一个参数列表时,它会在行之间打印出空行。所以这样:
我的问题是我做错了什么让csv编写器产生空行。这是我的代码:
npm install; npm test
我也遇到这个错误: person_row = [GetCampaignInformation.publisher_id,GetCampaignInformation.source_id,GetPersonInformation.first_name [row_count], IndexError:列表索引超出范围
答案 0 :(得分:1)
在打开的行上添加wb而不是w,就像文档说要解决这个问题一样。谁知道python文档是正确的。
with open(config['LeadImportFilePath']['LeadImportFilePath'] + lead_import_name, 'wb') as f:
以下是此问题的documentation。阅读csv.writer部分
答案 1 :(得分:0)
也许你最后在CustomQuestion“\ n”中。删除CustomQuestiom中的最后一个字符,然后重试