I am trying to output a list to a csv file and the line below work fine.
I need help with changing the delimiter from the default comma(,) to tab delimited.
csv_file = open('output.cs v', 'w')
csv_writer = csv.writer(csv_ file)
Help very much appreciated
Kaf
I need help with changing the delimiter from the default comma(,) to tab delimited.
csv_file = open('output.cs v', 'w')
csv_writer = csv.writer(csv_ file)
Help very much appreciated
Kaf
Comment