1.2 Mounting google drive with colab

  1. Mounting Google Drive in Colab provides seamless access to your Drive files, enabling easy data import/export and collaboration within your Jupyter notebooks.
  2. You can mount your Google Drive in Colab with just a few lines of code, granting your notebook read and write access to your Drive’s content.
  3. Run the below block of code in notebook and access permission to mount your drive
from google.colab import drive
drive.mount('/content/drive')