V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
推荐学习书目
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 · Dec 15, 2017 · 2279 views
    This topic created in 3067 days ago, the information mentioned may be changed or developed.
    #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 replies    2017-12-17 06:12:42 +08:00
    Liyuu
        1
    Liyuu  
       Dec 16, 2017
    因为你的 getImg()没有返回任何值,所以你输出的结果就是 none
    wzpyl541
        2
    wzpyl541  
    OP
       Dec 16, 2017
    但是这个网址是有图片的呀?为什么没有返回值呢?
    Liyuu
        3
    Liyuu  
       Dec 17, 2017
    首先,这个网址里的图片地址并不在网页源码里,你单纯的在这个网页源码里去搜这个.jpg 是不会有结果的,不信你可以在 html = page.read() 后面加一句 print(html),看看里面是否有 jpg。
    其次,就算你改进了程序,得到了图片地址 你也要在 getImg()这个程序的里写 "return 图片地址的变量",才会打印出来你想要的,getImg()如果不 return 东西的话,你打印它就是 none
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3106 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 41ms · UTC 03:35 · PVG 11:35 · LAX 20:35 · JFK 23:35
    ♥ Do have faith in what you're doing.