Using python, i am writing data from a list to a .csv file, row-wise.
Code:
writer=csv.writer(open(filepath,'wb'))
header=['type','id','numberOfUpdates','isPingEnabled','lastUpdated']
length_list=len(header)
i=0
while i!=length_list :
data=header[i]
print data
i=i+1
writer.writerow(data)
Result: Data is being written to csv file but each letter is printed in each column.
For example: type is written as 't' in one column, 'y' in next column and so on.
I need the whole word in one column. Can some one point out what change can i make?
Thanks
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…