这篇文章给大家分享的是有关python中traceback实现异常获取与处理的示例的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
python的数据类型:1. 数字类型,包括int(整型)、long(长整型)和float(浮点型)。2.字符串,分别是str类型和unicode类型。3.布尔型,Python布尔类型也是用于逻辑运算,有两个值:True(真)和False(假)。4.列表,列表是Python中使用最频繁的数据类型,集合中可以放任何数据类型。5. 元组,元组用”()”标识,内部元素用逗号隔开。6. 字典,字典是一种键值对的集合。7. 集合,集合是一个无序的、不重复的数据组合。
具体内容如下:
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)
感谢各位的阅读!关于“python中traceback实现异常获取与处理的示例”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。