📅  最后修改于: 2023-12-03 15:39:20.433000             🧑  作者: Mango
在使用Google Colab编写项目时,经常需要与Google Drive进行交互。本文将介绍如何将Google Drive连接到Colab,以便于进行文件的读写操作。
from google.colab import drive
drive.mount('/content/drive')
以下示例演示如何使用Python语言来进行读写操作。
with open('/content/drive/My Drive/file.txt') as f:
print(f.read())
with open('/content/drive/My Drive/file.txt', 'w') as f:
f.write('Hello, world!')
将谷歌驱动器连接到Colab,可以方便地在Colab中访问和操作Google Drive中的文件。注意:对Colab做出的更改不会自动同步到Google Drive中,需要手动同步。