KnowledgeBoat Logo

Computer Science

Name the functions used to read and write in CSV files.

Python File Handling

1 Like

Answer

The functions used to read in CSV files are as follows :

  1. csv.reader()

The functions used to write in CSV files are as follows :

  1. csv.writer()
  2. <writerobject>.writerow()
  3. <writerobject>.writerows()

Answered By

1 Like


Related Questions