我正在向Jupyter Notebook中添加一张图片,如下所示:
from IPython.display import Image
Image("a.png")
![title](a.png)
但得到了错误:
/bin/sh: 1: Syntax error: word unexpected (expecting ")")
知道我错过了什么吗?谢谢!
答案 0 :(得分:3)
要在jupyter笔记本中添加图像,首先将下拉列表从代码更改为Markdown,然后编写以下代码并运行它
<img src="1.jpg" title="Title text" />
# Image 1