以CSV文件格式导出Python

时间:2014-10-30 08:47:29

标签: python csv

我正在尝试以CsV格式导出一些内容。但是无法做到。

下面是我在python中做的任意想法。

script , file = argv
emails = open(file,"r") #opens the file 
results = csv.writer(open("Results.txt" , "w")) #Creates a new file to show results.

resultsList = []

here is the complete data and all


for results in resulsList:
results.writeline(result)

results.close()
emails.close()

现在......我需要以CSV格式保存存储在results.txt中的所有数据。

请提供您的反馈意见。 感谢。

1 个答案:

答案 0 :(得分:0)

您可以使用numpy genfromtxtsavetxt

import numpy as np
np.savetxt('results.csv', np.genfromtxt(file,delimiter='',dtype=None),delimiter=',')

请注意,您必须在genfromtxt

中设置相应的分隔符