为了账号安全,请及时绑定邮箱和手机立即绑定

为什么 这里全部出错了呢。打印不出来

#coding=utf-8

url = "http://www.daidu.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())


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()

57b6bad30001e15505000268.jpg

57b6bad40001a9fc05000258.jpg

57b6bad50001e6ed05000265.jpg

这是什么原因??


正在回答

4 回答

# coding:utf8 
__author__ = 'xray'
import urllib2
import cookielib

url = "https://rollbar.com/docs/"

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 response2.read()

print '第三种方法'
cj = cookielib.CookiJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
urllib2.install_opener(opener)
response3 = urllib2.urlopen(url)
print response3.getcode()
print cj
print response3.read()
  1. 没有  # coding:utf8

    http://img1.sycdn.imooc.com//57d6bc10000173f810720611.jpg

  1.  有 # coding:utf8

    http://img1.sycdn.imooc.com//57d6bc000001bb5110710635.jpg


1 回复 有任何疑惑可以回复我~
#1

weibo_da哒嘀_0 提问者

非常感谢!
2016-09-16 回复 有任何疑惑可以回复我~
import urllib2
import cookielib


0 回复 有任何疑惑可以回复我~

写错了,是# coding:utf8

0 回复 有任何疑惑可以回复我~

童鞋,在代码中写入中文字符时记得在首行声明coding:utf8,还有你还没有导入urllib2,cookielib。→_→

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Python开发简单爬虫
  • 参与学习       227670    人
  • 解答问题       1219    个

本教程带您解开python爬虫这门神奇技术的面纱

进入课程

为什么 这里全部出错了呢。打印不出来

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信