📌  相关文章
📜  如何从 google colab 下载 .xlsx 文件 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:04.236000             🧑  作者: Mango

代码示例2
from google.colab import files

with open('example.txt', 'w') as f:
  f.write('some content')

files.download('example.txt')