码迷,mamicode.com
首页 > 编程语言 > 详细

python异常捕获异常堆栈输出

时间:2018-05-01 10:45:54      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:return   log   import   exce   div   details   span   article   imp   

python异常捕获异常堆栈输出

学习了:https://blog.csdn.net/chris_grass/article/details/77927902

import traceback
def fun(a,b):
    return a/b
try:
    fun(1,0)
except Exception as e:
    traceback.print_exc()

 

python异常捕获异常堆栈输出

标签:return   log   import   exce   div   details   span   article   imp   

原文地址:https://www.cnblogs.com/stono/p/8975584.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!