Jupyter Notebook:语法错误:单词意外(期待“)”)

时间:2017-08-28 14:44:28

标签: python-3.x jupyter-notebook

我正在向Jupyter Notebook中添加一张图片,如下所示:

from IPython.display import Image
Image("a.png")
![title](a.png)

但得到了错误:

/bin/sh: 1: Syntax error: word unexpected (expecting ")")

知道我错过了什么吗?谢谢!

1 个答案:

答案 0 :(得分:3)

要在jupyter笔记本中添加图像,首先将下拉列表从代码更改为Markdown,然后编写以下代码并运行它

<img src="1.jpg" title="Title text" />
# Image 1