请问为什么这样写print输出的就是0
import urllib #python3之后,urllib与urllib2合在一起为urllib了
response=urllib.request.urlopen("http://www.baidu.com") #直接请求网页
print(response.getcode()) #获取网页状态码,如果是200则表示成功
cont=response.read() #读取获取的网页内容
print(len(cont)) #输出156019
print(len(response.read())) #输出0