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

第一种方法为什么无法打印出网页内容呢?

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

print "the first method"
respones1 = urllib2.urlopen(url)
print respones1.getcode()
print len(respones1.read())
print respones1.read()

按理说应该会打印出来啊,为什么没有结果呢?

正在回答

1 回答

repones1.read()被占用了,赋值给对象a就可以(具体也搞不懂为什么)……

import urllib2
url = "http://www.baidu.com/"
 
print "the first method"
respones1 = urllib2.urlopen(url)
a = respones1.read()
print respones1.getcode()
print len(a)
print a


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

通过啊 提问者

非常感谢!
2016-04-20 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

第一种方法为什么无法打印出网页内容呢?

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