Answers for "uploading folder in google colab"

4

google colab how to upload a folder

from google.colab import drive
drive.mount('/content/gdrive')
Posted by: Guest on April-02-2020
0

uploading folder in google colab

from zipfile import ZipFile
file_name = file_path

with ZipFile(file_name, 'r') as zip:
  zip.extractall()
  print('Done')
  
 #REFRESH PAGE
Posted by: Guest on April-18-2022

Code answers related to "uploading folder in google colab"

Python Answers by Framework

Browse Popular Code Answers by Language