Comma is the default delimiter for a CSV file.
3 Likes
True
Reason — The comma (,) is the most popular and default delimiter for a CSV file. This means that values in the file are separated by commas by default.
Answered By
2 Likes
Every record in a CSV file is stored in reader object in the form of a list.
writerow() method allows us to write a list of fields to the CSV file.
tell() method of Python tells us the current position within the file.
The offset argument to seek() method indicates the number of bytes to be moved.