This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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() |
No comments:
Post a Comment