Chrome Python 2的Web浏览器在repl.it中无法正常工作

mtb9vblg  于 2023-09-28  发布在  Go
关注(0)|答案(1)|浏览(105)

我正在使用repl.it和webbrowser模块来使用webbrowser.open("https://google.com/")打开链接,但是,我的链接不起作用。你能帮我一下吗?

import webbrowser
webbrowser.open("https://google.com/", 2)
zpjtge22

zpjtge221#

你可以这样简化答案:

import webbrowser
webbrowser.open(*website*)

当然,将 * website * 替换为site并不需要写2。那就告诉我是否有效。
顺便说一下,一些在线python处理器,如pythonanywhere,不允许打开所有网站。他们只允许一些特定的网站。

相关问题