I want to mount google drive on google Colab and I am using this command to mount the drive
from google.colab import drive drive.mount(\'/content/drive/\') <
Simply use:
from google.colab import drive drive.mount("/content/gdrive")
instead of:
from google.colab import drive drive.mount("/content/drive/")