12345678910#是用urllib模块import urlliburl = "http://www.baidu.com"response = urllib.request.urlopen(url)#read 方法 返回的字节形式的二进制数据#decode 方法 将二进制数据解码成字符串content = response.read().decode("utf-8")print(content)