📜  如何在 python 代码示例中读取网站

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

代码示例2
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)
print('i thik this is how u do it')