python爬虫异常处理

import urllib2


try:
    response = urllib2.urlopen('http://www.baidu.com')
except urllib2.URLError, e:
    print e.reason

print response.read()

 

posted @ 2017-08-24 10:43  layfork  阅读(168)  评论(0编辑  收藏  举报