使 Python 应用程序打开网页的命令

发布于 2024-11-19 21:18:24 字数 205 浏览 2 评论 0原文

我需要做什么才能让我正在编写的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

司马昭之心 2024-11-26 21:18:25

URL 必须是字符串。

webbrowser.open('http://www.google.com/')

The URL needs to be in a string.

webbrowser.open('http://www.google.com/')
绳情 2024-11-26 21:18:25

看一下 webbrowser 模块。

Have a look at the webbrowser module.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文