欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jupyter读取图片并展示的两种方法

程序员文章站 2022-03-20 14:43:10
...

1.通用方法:python打开

from PIL import Image
display(Image.open("data/20a6a2.png"))
#data/20a6a2.png是路径。

2.jupyter专用:markdown打开
jupyter读取图片并展示的两种方法
即:

![hello](data/20a6a2.png)
#hello是图片的名字,随便写什么都可以。
#data/20a6a2.png是路径

以上两种方法输入代码后,路径更改为你自己的图片的路径,然后点击运行即可展示图片。

相关标签: python jupyter