Answers for "save files from colab to drive"

Go
2

export csv from colab to drive

df.to_csv('data.csv')
!cp data.csv "drive/My Drive/"
Posted by: Guest on April-09-2022
0

download from colab to local drive

from google.colab import files
import pandas as pd
result.to_csv('example_file.csv')
files.download('example_file.csv')
Posted by: Guest on July-15-2021
0

how to save files directly in google drive in google colab

!ls /content/gdrive/My Drive
Posted by: Guest on September-06-2020

Code answers related to "save files from colab to drive"

Browse Popular Code Answers by Language