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

为什么运行结果为空??真的很急

# -*- coding: UTF-8 -*-
import urllib2

class HtmlDownloader(object):

   def download(self, url):
       if url is None:
           return None

       response = urllib2.urlopen(url)

       if response.getcode() != 200:
           return None

       return response.read()

s=HtmlDownloader()
s.download("http://xiaoshuo.sogou.com/book/11_493239/")

运行结果:

http://img1.sycdn.imooc.com//5891b7f80001b6df05230086.jpg

正在回答

1 回答

执行成功了啊,print一下结果看看

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

举报

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

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

进入课程

为什么运行结果为空??真的很急

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