📅  最后修改于: 2022-03-11 14:46:55.752000             🧑  作者: Mango
import urllib.request
with urllib.request.urlopen("http://www.python.org") as url:
s = url.read()
# I'm guessing this would output the html source code ?
print(s)