Informatics Practices

You need to import CSV package in order to store a DataFrame in a CSV file.

Python Pandas

1 Like

Answer

False

Reason — In Python, we don't need to import the CSV package specifically to store a DataFrame in a CSV file when using the Pandas library. The DataFrame.to_csv() method is provided by Pandas itself and handles the conversion of DataFrame data to a CSV file format.

Answered By

3 Likes


Related Questions