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

运行问题!

运行结果刚开始的时候还跟老师的一样,几秒后前面几行就消失了?

正在回答

2 回答

我的也是这样,哥们你怎么解决的??

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

# coding:utf8

import cookielib


print '第一种方法'

import urllib2

url= "http://www.baidu.com"

response = urllib2.urlopen(url)

print response.getcode()

cont = len(response.read())

print cont


print '第二种方法'

request = urllib2.Request(url)

request.add_header("user-agent", "Mozilla/5.0")

response2 = urllib2.urlopen(request)

print response2.getcode()

cont = len(response2.read())

print cont


print "第三种方法"

cj = cookielib.CookieJar()

opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))

urllib2.install_opener(opener)

response3 = urllib2.urlopen(url)

print response3.getcode()

print response3.read()

print cj


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

举报

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

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

进入课程

运行问题!

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