You can mount your [[Google Drive]] to [[Google Colab]] with ```python from google.colab import drive # Mount drive drive.mount("/content/drive") # or any subfolder # Access a specific file my_file = "/content/drive/my_file.txt" ``` When you run this code, it will request authorization to mount the drive.