I have a list of unicode string that I want to write to a cvs file.
with open(archive_dir_today + 'myfile.csv', 'wb') as f:
writer = csv.writer(f)
writer.writerows(list_diff_1)
this work fine, except that it writes every character in a separate cell.
For example the first entry in the list is "1000F034E2"
I end up with a row in the csv file that looks like this:
1,0,0,0,F,0,3,4,E,2
what is causing that problem?