0

我使用 Python 3.3 编写了一个 Python 程序。输出保存为 HTML 文件。我希望 HTML 文件自动弹出并在程序结束时显示结果。有没有解决方案?我会感谢你的帮助。谢谢

4

1 回答 1

1

这应该有效:

>>> import webbrowser
>>> webbrowser.get('/usr/bin/google-chrome %s').open('http://google.com')
True

**这将打开带有 Google 主页的 Chrome 网络浏览器。

更改为url pathhtmlfile path页面并使用file://{ followed by the html page path }

>>> webbrowser.get('/usr/bin/google-chrome %s').open('file://the/path/to/the/html/page')

更新:

尝试:

>>> webbrowser.get('windows-default').open('{ url path for static html page }')

参考:python的webbrowser在windows 7上启动IE而不是默认

于 2013-02-04T14:20:29.270 回答