CBSE Class 12 Informatics Practices Question 38 of 70

Importing/Exporting Data between CSV Files/MySQL and Pandas — Question 3

Back to all questions
3
Question

Question 3

Pandas can only read from CSV files but can't write CSV files.

Answer

False

Reason — Python's Pandas library provides two functions, read_csv() and to_csv(), which are used for reading data from a CSV file into a DataFrame and writing data from a DataFrame to a CSV file, respectively.