Answers for "append new line into csv with csv-writer"

2

python append to csv on new line

import csv   
fields=['first','second','third']
with open(r'name', 'a') as f:
    writer = csv.writer(f)
    writer.writerow(fields)
Posted by: Guest on April-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language