I have this code which suppose to export my list items to a csv file where each row in the file contains an item in the list.
writer = csv.writer(open(path+"output.csv", 'wb'))
for item in result:
writer.writerow(item)
THe result I'm getting is quite strange (example for the 2 top items in the list: 'past due' and 'code'):
p,a,s,t, ,d,u,e
c,o,d,e
The results I want to get is simply:
past due
code
Any ideas ?