python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > python捕获异常后继续执行

python捕获异常后继续执行问题

作者:苏醒的怪兽

这篇文章主要介绍了python捕获异常后继续执行问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教

python捕获异常后继续执行

最近写爬虫,发现获取的URL链接中总会出现一些坏数据,即访问后被拒绝,requests直接抛出异常,导致爬虫中断。

于是想找方法在捕获异常后跳过异常URL继续执行程序

方法如下:

while True:
    try:
        r=requests.get(url,timeout=5)
        with open(path+'/'+name+".txt",'w') as myfile:
            myfile.write(r.content)
            myfile.close()
    except Exception as ex:
        template = "An exception of type {0} occurred. Arguments:\n{1!r}"
        message = template.format(type(ex).__name__, ex.args)
        print('\n'+message)
        break
    finally:
        break

首先外层一个死循环,然后通过try……except捕获异常。

捕获后处理完异常,然后通过return或者break跳出循环,继续执行程序。

注意最后的finally,意思是无论是否捕获到异常都执行后面的代码,没有则一条则无异常时会陷入死循环状态

python使用logging捕获异常后继续执行函数

使用python的logging模块可以在捕获异常后,记录异常且不退出程序:

例子:

import logging
logging.basicConfig(
    filename='new.log',  # 打印写入的文件
    filemode='a', )  # 写入日志的方法,a为追加,w为写入
try:
    a = 1 / 0
except Exception as e:
    logging.exception(e) # 会把报错的信息记录下来
print('other program') # 继续执行其他错误

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文