Answers for "colab get filename"

3

download from colab

from google.colab import files
files.download("path")
Posted by: Guest on August-06-2020
0

colab get filename

example1 = "/content/example1.txt"
file1 = open(example1, "r")
print(file1.name)
Posted by: Guest on June-01-2021

Browse Popular Code Answers by Language