Answers for "writing csv file with csv"

0

writing csv file with csv

import csv

with open('employee_file.csv', mode='w') as employee_file:
    employee_writer = csv.writer(employee_file, delimiter=',', quotechar='"', quoting=csv.QUOTE_MINIMAL)

    employee_writer.writerow(['John Smith', 'Accounting', 'November'])
    employee_writer.writerow(['Erica Meyers', 'IT', 'March'])
Posted by: Guest on August-25-2021

Code answers related to "writing csv file with csv"

Browse Popular Code Answers by Language