Python Forum

Full Version: reading csv and writing csv
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am reading values from csv file into a list and want to write the figures from list into a comma separated row
my_list = ['1', 'John']
print(','.join(my_list))
Thanx it worked