只有运行的时候输出一下方法一和方法二,然后就消失了,然后就输出这些东西,这是为啥啊??
只有运行的时候输出一下方法一和方法二,然后就消失了,然后就输出这些东西,这是为啥啊??
代码如下:
#coding:utf8
'''
Created on 2019年7月24日
@author: 木子李
'''
import urllib2
url = "http://www.baidu.com"
print '第一种方法'
response1 = urllib2.urlopen(url)
print response1.getcode()
print len(response1.read())
print '第二种方法'
request = urllib2.Request(url)
request.add_header("user-agent","mozilla/5.0")
response2 = urllib2.urlopen(request)
print response2.getcode()
print len(response2.read())
import cookielib
print '第三种方法'
cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
urllib2.install_opener(opener)
response3 = urllib2.urlopen(url)
print response3.getcode()
print cj
print response3.read()