writerow() method allows us to write a list of fields to the CSV file.
3 Likes
True
Reason — The writerow() method in the csv module allows us to write a list of fields to a CSV file.
Answered By
Functions readline() and readlines() are essentially the same.
Every record in a CSV file is stored in reader object in the form of a list.
Comma is the default delimiter for a CSV file.
tell() method of Python tells us the current position within the file.