Informatics Practices

In order to work with CSV files from panda, you need to import …………… , other than pandas.

  1. .csv
  2. pandas.io
  3. newcsv
  4. no extra package required

Python Pandas

2 Likes

Answer

no extra package required

Reason — Python's Pandas library offers two functions, read_csv() and to_csv(), that help bring data from a CSV file into a DataFrame and write a DataFrame's data to a CSV file. Therefore, we do not need to import any additional packages or modules other than pandas.

Answered By

2 Likes


Related Questions