KnowledgeBoat Logo

Computer Science

Every record in a CSV file is stored in reader object in the form of a list.

Python Data Handling

1 Like

Answer

True

Reason — The reader object in the csv module is an iterable that provides access to each line of a CSV file, with each line represented as a list of fields.

Answered By

2 Likes


Related Questions