Pages

Jun 1, 2015

Output data to csv files

There is a little difference between the code implemented in Python 2 and 3.
#Python 3
with open(filename, 'w', newline='') as output:
writer = csv.writer(output)
writer.writerows(dataSet) #dataSet is a list
output.close()
#Python 2
with open(filename, "w") as output:
writer = csv.writer(output, lineterminator='\n')
writer.writerow(dataSet) #dataSet is a list
output.close()
view raw csv.py hosted with ❤ by GitHub

No comments:

Post a Comment