I need to write lists that all differ in length to a CSV file in columns.
I currently have:
d=lists
writer = csv.writer(fl)
for values in zip(*d):
writer.writerow(values)
which works only partially. What I suspect is happening is that it stops zipping up until the lists with the list of the shortest length.