Download Csv From Drive Colab

[Solved] Download Csv From Drive Colab | Python - Code Explorer | yomemimo.com
Question : export csv from colab to drive

Answered by : powerful-puma-8egmlpc55iz7

df.to_csv('data.csv')
!cp data.csv "drive/My Drive/"

Source : | Last Update : Sat, 16 Apr 22

Question : download csv from drive colab

Answered by : josejuanse

#df is a pandas dataframe
df
df.to_csv('data.csv')
files.download('data.csv')

Source : | Last Update : Tue, 18 Oct 22

Answers related to download csv from drive colab

Code Explorer Popular Question For Python