0
Q:

append record in csv

with open('document.csv','a') as fd:
    fd.write(myCsvRow)
4
import csv   
fields=['first','second','third']
with open(r'name', 'a') as f:
    writer = csv.writer(f)
    writer.writerow(fields)
2

New to Communities?

Join the community