KnowledgeBoat Logo

Computer Science

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

Python Data Handling

2 Likes

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

1 Like


Related Questions