如何在 Google Colaboratory 的文本单元格中插入“.png”图像?

how to insert ".png" images in textcell at Google Colaboratory?

png" 文本单元格中的文件。

所以我联锁我的 google 驱动器然后

![iris]("drive/GPU/data/iris.PNG")

但是没有显示。

请教我。 :)

试试这个

![iris](drive/GPU/data/iris.PNG)

或来自python

from IPython.display import Image
Image(filename="drive/GPU/data/iris.PNG")