基于python traceback实现异常的获取与处理
作者:jh11200 时间:2022-04-05 09:59:32
这篇文章主要介绍了基于python traceback实现异常的获取与处理,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
1、traceback.print_exc()
2、traceback.format_exc()
3、traceback.print_exception()
简单说下这三个方法是做什么用的:
1、print_exc():是对异常栈输出
2、format_exc():是把异常栈以字符串的形式返回,print(traceback.format_exc()) 就相当于traceback.print_exc()
3、print_exception():traceback.print_exc()实现方式就是traceback.print_exception(sys.exc_info()),可以点sys.exc_info()进
去看看实现
测试代码如下:
def func(a, b):
return a / b
if __name__ == '__main__':
import sys
import time
import traceback
try:
func(1, 0)
except Exception as e:
print('***', type(e), e, '***')
time.sleep(2)
print("***traceback.print_exc():*** ")
time.sleep(1)
traceback.print_exc()
time.sleep(2)
print("***traceback.format_exc():*** ")
time.sleep(1)
print(traceback.format_exc())
time.sleep(2)
print("***traceback.print_exception():*** ")
time.sleep(1)
traceback.print_exception(*sys.exc_info())
运行结果:
*** <class 'ZeroDivisionError'> division by zero ***
***traceback.print_exc():***
Traceback (most recent call last):
File "E:/HttpRunnerManager-jh/ApiManager/tests.py", line 42, in <module>
func(1, 0)
File "E:/HttpRunnerManager-jh/ApiManager/tests.py", line 33, in func
return a / b
ZeroDivisionError: division by zero
***traceback.format_exc():***
Traceback (most recent call last):
File "E:/HttpRunnerManager-jh/ApiManager/tests.py", line 42, in <module>
func(1, 0)
File "E:/HttpRunnerManager-jh/ApiManager/tests.py", line 33, in func
return a / b
ZeroDivisionError: division by zero
***traceback.print_exception():***
Traceback (most recent call last):
File "E:/HttpRunnerManager-jh/ApiManager/tests.py", line 42, in <module>
func(1, 0)
File "E:/HttpRunnerManager-jh/ApiManager/tests.py", line 33, in func
return a / b
ZeroDivisionError: division by zero
可以看出,三种方式打印结果是一样的。在开发时,做调试是很方便的。也可以把这种异常栈写入日志。
logging.exception(ex)
# 指名输出栈踪迹, logging.exception的内部也是包了一层此做法
logging.error(ex, exc_info=1)
# 更加严重的错误级别
logging.critical(ex, exc_info=1)
# 我直接copy的,未尝试。有时间会试下的
python 还有一个模块叫cgitb,输出的error非常详情。
try:
func(1, 0)
except Exception as e:
import cgitb
cgitb.enable(format='text')
func(1, 0)
来源:https://www.jianshu.com/p/01ed4b8d7d9a
标签:python,traceback,异常,获取,处理
0
投稿
猜你喜欢
深入SQL截取字符串(substring与patindex)的详解
2024-01-27 16:16:24
python简单读取大文件的方法
2021-04-24 04:10:47
用js实现放大镜效果
2023-09-19 18:29:29
Ajax实现搜索框提示功能
2023-09-11 20:51:21
python 的 scapy库,实现网卡收发包的例子
2021-08-08 17:25:05
关于MySQL中explain工具的使用
2024-01-18 01:51:15
Python制作当年第一款手机游戏-贪吃蛇游戏(练习)
2022-06-20 02:37:35
通过python+selenium3实现浏览器刷简书文章阅读量
2022-11-09 09:04:37
Golang字符串常用函数的使用
2024-02-11 03:57:35
Python第三方库jieba库与中文分词全面详解
2022-03-14 22:32:40
python匹配两个短语之间的字符实例
2022-08-31 04:49:57
轻松处理Dreamweaver段落缩进
2007-11-17 07:53:00
Python+Sklearn实现异常检测
2022-09-06 14:28:47
D3.js 实现带伸缩时间轴拓扑图的示例代码
2024-05-09 10:20:13
浅谈keras中loss与val_loss的关系
2021-12-12 08:41:22
mysql left join快速转inner join的过程
2024-01-26 19:08:17
Ubuntu中MySQL的参数文件my.cnf示例详析
2024-01-13 02:26:28
解决Navicat for Mysql连接报错1251的问题(连接失败)
2024-01-27 04:29:52
ES6深入理解之“let”能替代”var“吗?
2024-05-28 15:41:33
python神经网络Batch Normalization底层原理详解
2021-01-28 12:50:08