使 Python 应用程序打开网页的命令
我需要做什么才能让我正在编写的 Python 应用程序在默认浏览器中打开网页?不需要告诉它该网页是什么或其他任何内容,它会打开我已经选择的网页。
我在此处找到了一些文档,但我总是从 URL 中的符号中得到语法错误。有什么帮助吗?
What would I have to do to make a Python application I am writing open up a web page in the default browser? It doesn't need to be told what the webpage is or anything, it'll be opening one that I've already chosen.
I found some documentation here but I always get a syntax error from the symbols in the URL. Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
URL 必须是字符串。
The URL needs to be in a string.
看一下
webbrowser
模块。Have a look at the
webbrowser
module.