如何在Python Jupyter Notebook / Cell中打开URL?

时间:2019-04-25 13:59:58

标签: python jupyter-notebook

我必须在jupyter noteboook中显示结果/网页。我想在Python Jupyter Notebook / Cell中打开URL。不在浏览器中...代码也应该在函数内部。

1 个答案:

答案 0 :(得分:0)

您可以使用IFrame

在Jupyter笔记本中显示网页。
from IPython.display import IFrame

url = 'https://www.wikipedia.org'
IFrame(url, width=800, height=400)