Answers for "python create csv and add row"

2

append record in csv

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
0

writerows to existing csv python

import sys 
import os
import csv

listOfLines= [['[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]']]

def write_to_csv(list_of_emails):
   with open('emails.csv', 'w', newline='') as csvfile:
       writer = csv.writer(csvfile, delimiter = ',')
       writer.writerows(list_of_emails)

write_to_csv(listOfLines)
Posted by: Guest on December-18-2020

Python Answers by Framework

Browse Popular Code Answers by Language