V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
wzpyl541
V2EX  ›  Python

为什么爬取这个网页的输出却得到 None?代码如下

  •  
  •   wzpyl541 · 2017-12-15 18:13:14 +08:00 · 1839 次点击
    这是一个创建于 2330 天前的主题,其中的信息可能已经有所发展或是发生改变。
    #coding=utf-8

    import urllib

    import re



    def getHtml(url):

    page = urllib.urlopen(url)

    html = page.read()

    return html



    def getImg(html):

    reg = r'src="(.+?\.jpg)" pic_ext'

    imgre = re.compile(reg)

    imglist = re.findall(imgre,html)

    x = 0

    for imgurl in imglist:

    urllib.urlretrieve(imgurl,'%s.jpg' % x)

    x+=1





    html = getHtml("http://7mx.com/photo/444648")



    print getImg(html)
    3 条回复    2017-12-17 06:12:42 +08:00
    Liyuu
        1
    Liyuu  
       2017-12-16 03:08:38 +08:00
    因为你的 getImg()没有返回任何值,所以你输出的结果就是 none
    wzpyl541
        2
    wzpyl541  
    OP
       2017-12-16 16:28:25 +08:00
    但是这个网址是有图片的呀?为什么没有返回值呢?
    Liyuu
        3
    Liyuu  
       2017-12-17 06:12:42 +08:00
    首先,这个网址里的图片地址并不在网页源码里,你单纯的在这个网页源码里去搜这个.jpg 是不会有结果的,不信你可以在 html = page.read() 后面加一句 print(html),看看里面是否有 jpg。
    其次,就算你改进了程序,得到了图片地址 你也要在 getImg()这个程序的里写 "return 图片地址的变量",才会打印出来你想要的,getImg()如果不 return 东西的话,你打印它就是 none
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   804 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 35ms · UTC 22:04 · PVG 06:04 · LAX 15:04 · JFK 18:04
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.