connect google drive to colab
from google.colab import drive
drive.mount("/content/gdrive")
connect google drive to colab
from google.colab import drive
drive.mount("/content/gdrive")
how to upload a file in colab
# It will prompt you to select a file. Click on “Choose Files” then select and upload the file. Wait for the file to be 100% uploaded.
from google.colab import files
uploaded = files.upload()
# To store dataset in a Pandas Dataframe
import io
df2 = pd.read_csv(io.BytesIO(uploaded['Filename.csv']))
upload file in colab
from google.colab import files
files.upload()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us