Computer Science

Which module is used for working with CSV files in Python?

  1. random
  2. statistics
  3. csv
  4. math

Python Data Handling

3 Likes

Answer

csv

Reason — For working with CSV files in Python, there is an inbuilt module called csv. It is used to read and write tabular data in CSV format.

Answered By

2 Likes


Related Questions