python使用urllib2 http 下载参数的try catch

import urllib2

req = urllib2.Request('http://blog.csdn.net/cqcre')
try:
urllib2.urlopen(req)
except urllib2.HTTPError, e:
print e.code
print e.reason

原文地址:https://www.cnblogs.com/oftenlin/p/9161705.html