📜  如何使用 python 代码示例从 url 读取网站

📅  最后修改于: 2022-03-11 14:45:46.841000             🧑  作者: Mango

代码示例3
# 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)