博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python中获取异常(Exception)信息
阅读量:6363 次
发布时间:2019-06-23

本文共 1674 字,大约阅读时间需要 5 分钟。

  异常信息的获取对于程序的调试非常重要,可以有助于快速定位有错误程序语句的位置。下面介绍几种python中获取异常信息的方法,这里获取异常(Exception)信息采用try...except...程序结构。如下所示

try:  ...except Exception, e:  ...

 

1、str(e)

返回字符串类型,只给出异常信息,不包括异常信息的类型,如1/0的异常信息

'integer division or modulo by zero'

2、repr(e)

给出较全的异常信息,包括异常信息的类型,如1/0的异常信息

"ZeroDivisionError('integer division or modulo by zero',)"

3、e.message

获得的信息同str(e)

4、采用traceback模块

  需要导入traceback模块,此时获取的信息最全,与python命令行运行程序出现错误信息一致。使用traceback.print_exc()打印异常信息到标准错误,就像没有获取一样,或者使用traceback.format_exc()将同样的输出获取为字符串。你可以向这些函数传递各种各样的参数来限制输出,或者重新打印到像文件类型的对象。

 

示例如下:

import tracebackprint '########################################################'print "1/0 Exception Info"print '---------------------------------------------------------'try:    1/0except Exception, e:    print 'str(Exception):\t', str(Exception)    print 'str(e):\t\t', str(e)    print 'repr(e):\t', repr(e)    print 'e.message:\t', e.message    print 'traceback.print_exc():'; traceback.print_exc()    print 'traceback.format_exc():\n%s' % traceback.format_exc()print '########################################################'print '\n########################################################'  print "i = int('a') Exception Info"print '---------------------------------------------------------'try:    i = int('a')except Exception, e:    print 'str(Exception):\t', str(Exception)    print 'str(e):\t\t', str(e)    print 'repr(e):\t', repr(e)    print 'e.message:\t', e.message    print 'traceback.print_exc():'; traceback.print_exc()    print 'traceback.format_exc():\n%s' % traceback.format_exc()print '########################################################'

 

示例结果

 

 

参考资料:

转载于:https://www.cnblogs.com/klchang/p/4635040.html

你可能感兴趣的文章
自己写一个jquery
查看>>
BGP聚合attribute-map
查看>>
艾伟:C#中抽象类和接口的区别
查看>>
Flink - NetworkEnvironment
查看>>
BZOJ4374 : Little Elephant and Boxes
查看>>
【.Net Framework 体积大?】不安装.net framework 也能运行!?开篇叙述-1
查看>>
LLDP协议、STP协议 笔记
查看>>
如何使用 GroupBy 计数-Count()
查看>>
有了这个课件制作工具,还怕备课有难题?
查看>>
jquery之clone()方法详解
查看>>
Delphi 用文件流读取文本文件字符串的方法
查看>>
php中怎么导入自己写的类
查看>>
C# 委托
查看>>
Using Information Fragments to Answer the Questions Developers Ask
查看>>
JVM学习(4)——全面总结Java的GC算法和回收机制---转载自http://www.cnblogs.com/kubixuesheng/p/5208647.html...
查看>>
getParameter和getAttribute的区别
查看>>
自动工作负载库理论与操作(Automatic Workload Repository,AWR)
查看>>
Redis两种方式实现限流
查看>>
CentOS 7 中使用NTP进行时间同步
查看>>
在MongoDB数据库中查询数据(上)
查看>>