使用python在循环内在csv中添加新列
作者:互联网
我将数据从循环写入csv文件.
预期结果:每次迭代都应在新列中写入数据.
实际上,它会覆盖上一次迭代的数据.如何为每次迭代添加新列?
def keywordsToCsv(filename, single_phrases):
path = 'keywords/keywords.csv'
with open(path, 'w', encoding='utf-8') as csvfile:
filewriter = csv.writer(csvfile, delimiter=',', quotechar='|', quoting=csv.QUOTE_MINIMAL)
filewriter.writerow([filename])
for phrase in single_phrases:
filewriter.writerow([phrase])
解决方法:
无需为每次迭代将新列写入CSV文件.相反,您可以延迟写入列,并继续将输出列追加到列表中,直到循环完成为止,此时您可以将所有列一起写为一行.
标签:python-3-x,python 来源: https://codeday.me/bug/20191211/2105815.html