KnowledgeBoat Logo

Computer Science

Which of the following statement is incorrect in the context of pickled binary files ?

  1. The csv module is used for reading and writing objects in binary files.
  2. The pickle module is used for reading and writing objects in binary files.
  3. The load() of the pickle module is used to read objects.
  4. The dump() of the pickle module is used to write objects.

Python File Handling

1 Like

Answer

The csv module is used for reading and writing objects in binary files.

Reason — The CSV module is used for reading and writing objects in CSV files.

Answered By

3 Likes


Related Questions