KnowledgeBoat Logo
|

Informatics Practices

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

Python Pandas

2 Likes

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.

Answered By

2 Likes


Related Questions