# -*- coding: utf-8 -*- import urllib2 import cookielib url = "http://www.baidu.com" print '方法1' response1 = urllib2.urlopen(url) print response1.getcode() print len(response1.read()) print '方法2' request= urllib2.Request(url) request.add_header("user-agent","Mozilla/5.0") response2 = urllib2.urlopen(url) print response2.getcode() print len(response2.read()) print '方法3' 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()
到底该如何配置 才能使输出的中文 不是乱码 除了使用 print u'xxx'的方式。。
如果使用print u'xxx'的方式 那么想输出倒数第二行的cj 内容的时候 如何让其内部的中文不输出为乱码呢?
慕莱坞9220042
泥巴复苏OL
相关分类