📜  如何在 pythion 中访问 http 页面 - Python 代码示例

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

代码示例1
#for Python 3.2
import urllib.request
page = urllib.request.urlopen("http://www.google.com")
print (page.read())