2020
12-29
12-29
Python 获取异常(Exception)信息的几种方法
异常信息的获取对于程序的调试非常重要,可以有助于快速定位有错误程序语句的位置。下面介绍几种Python中获取异常信息的方法,这里获取异常(Exception)信息采用try…except…程序结构。如下所示:try:print(x)exceptExceptionase:print(e)1.str(e)返回字符串类型,只给出异常信息,不包括异常信息的类型,如:try:print(x)exceptExceptionase:print(str(e))打印结果:name'x'isnotdefined2.repr(e)给出...
继续阅读 >