If you're working with both CSV and JSON data formats in a project, which Python standard library module would be redundant?

  • codecs
  • csv
  • json
  • pickle
The 'codecs' module is not necessary when working with CSV and JSON data formats. It is used for character encoding and decoding, which is not directly related to handling CSV and JSON files. You would typically use 'csv' and 'json' modules for those tasks.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *