在Python中向csv文件添加一列

时间:2015-11-13 08:26:49

标签: python

enter image description here

在我的代码中,我尝试使用以下命令将一列添加到csv文件中:

photo_likes[j] = photo_likes[j] + ',' + photo_scores[j]

但这不起作用。任何的想法?谢谢!!!!

1 个答案:

答案 0 :(得分:0)

您应该添加写入文件的操作,如:

latest_scrappy_info_file.write("what you want to write")

文档here