I have a dictionary of the following form
>>> {\'1\' : [V3210 , 234567 ,1235675 , 23], \'2\' : [v3214 , 5678 ,65879 ,89} , ...}
how to
Use the builtin csv module. This is assuming you want it in a key,value1,value2,... format.
key,value1,value2,...
import csv with open('filename', 'w') as f: c = csv.writer(f) for key, value in d.items(): c.writerow([key] + value)