python中使用try exception时,打印完整出错代码追踪

使用python程序时,不使用try exception时,虽然能打印完整的出错代码追踪,但是会发生异常崩溃导致程序卡死;启用try exception后,一般也只能打印异常类型和异常信息,无法直接获取到出错代码行和代码追踪信息,找到的解决办法有这么两个。

1.使用python自带的traceback模块

亲测python3.5和python3.8都自带了该模块,使用代码如下所示:

import traceback

def test(a):
    b =int(a)
    print(b)

print(dir(traceback))
try:
   test('10')
   test('sa')
except Exception as e:
   print(type(e))
   print(str(e))
   traceback.print_exc()
   traceback.print_exc(file=open('log.txt', 'a'))

2.直接使用exception的属性获取出错行文件和行数

def test(a):
    b =int(a)
    print(b)

try:
   test('10')
   test('sa')
except Exception as e:
   print(type(e))
   print(str(e))
   print('error file:{}'.format(e.__traceback__.tb_frame.f_globals["__file__"]))
   print('error line:{}'.format(e.__traceback__.tb_lineno))

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值