📅  最后修改于: 2022-03-11 14:45:46.841000             🧑  作者: Mango
# Latest code adjusted according to the latest python version
import urllib.request
try:
with urllib.request.urlopen('http://www.python.org/') as f:
print(f.read().decode('utf-8'))
except urllib.error.URLError as e:
print(e.reason)