Save Csv Colab

[Solved] Save Csv 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 : save csv colab

Answered by : bad-barracuda-uga20uuha8e0

from google.colab import files
files.download("data.csv")

Source : https://stackoverflow.com/questions/49394737/exporting-data-from-google-colab-to-local-machine | Last Update : Mon, 14 Dec 20

Answers related to save csv colab

Code Explorer Popular Question For Python