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 :
- csv.reader()
The functions used to write in CSV files are as follows :
- csv.writer()
- <writerobject>.writerow()
- <writerobject>.writerows()
Answered By
1 Like