Which of the following could be filled in the blank in the code segment below to write on the ’employee_file.csv’ so that 2 rows can be added?
import csv
with open(’employee_file.csv’, mode=’w’) as employee_file:
employee_writer = ———(employee_file, delimiter=’,’, quotechar=’”‘, quoting=csv.QUOTE_MINIMAL)
employee_writer.writerow([‘John Smith’, ‘Accounting’, ‘November’])
employee_writer.writerow([‘Erica Meyers’, ‘IT’, ‘March’])