I have 5 lists, all of the same length, and I'd like to write them to 5 columns in a CSV. So far, I can only write one to a column with this code:
with open('test.csv', 'wb') as f:
writer = csv.writer(f)
for val in test_list:
writer.writerow([val])
If I add another for loop, it just writes that list to the same column. Anyone know a good way to get five separate columns?

writerow. So really the question is how to get the necessary rows, given data which is in columns - which is a duplicate.