1
2
3
4
5
6
7
8
9
10
#是用urllib模块
import urllib

url = "http://www.baidu.com"

response = urllib.request.urlopen(url)
#read 方法 返回的字节形式的二进制数据
#decode 方法 将二进制数据解码成字符串
content = response.read().decode("utf-8")
print(content)