小编典典

如何在python中打开网址

python

import urllib

fun open():
    return urllib.urlopen('http://example.com')

但是,当example.com打开时,它不会呈现CSS或JS。如何在网络浏览器中打开网页?

@error(404)
def error404(error):
    return webbrowser.open('http://example.com')

我正在用瓶子。给我错误:TypeError("'bool' object is not iterable",)


阅读 209

收藏
2021-01-20

共1个答案

小编典典

使用webbrowser模块

import webbrowser

webbrowser.open('http://example.com')  # Go to example.com
2021-01-20