I want to write data in each row in csv file without overwriting. With this code I am able to write the data in every second row of the file. Please any help.This is the part of the code Im using these code
....
dfl_origin= [dfl_origin_X,dfl_origin_Y]
import csv
c = csv.writer(open("C:/Config/Output/box1.csv","a"))
c.writerow([dfl_origin[0],dfl_origin[1]])
....
So . Why the second data is not written into second row? Any help?
Thanks