标签: python jupyter-notebook
我必须在jupyter noteboook中显示结果/网页。我想在Python Jupyter Notebook / Cell中打开URL。不在浏览器中...代码也应该在函数内部。
答案 0 :(得分:0)
您可以使用IFrame
IFrame
from IPython.display import IFrame url = 'https://www.wikipedia.org' IFrame(url, width=800, height=400)