在我的jupyter笔记本中,我有一个pandas数据框架,其中一列具有HTML超链接,例如
<a href='data_exploration.html'>data_exploration</a>
我使用to_html()转换数据帧,我使用Ipython函数HTML在我的笔记本电脑上显示数据帧,但是,当我点击链接时,它返回一个404页面没有找到,有人有这样的经验,可以帮助
- 锚标记中的路径是基目录的相对路径。
试试这个
import webbrowser
webbrowser.open("data_exploration.html")
这段代码将直接在浏览器中打开data_exploration文件作为URL