Tags
Asked 2 years ago
13 Aug 2021
Views 232
Arielle

Arielle posted

How do I export pandas DataFrame to CSV ?

How do I export pandas DataFrame to CSV ?
Mahesh Radadiya

Mahesh Radadiya
answered Aug 16 '21 00:00

dataframe.to_csv(file path)
to_csv() is used to create csv file , if it already exist it will overwrite
Post Answer