當(dāng)Python的語(yǔ)段用了try...except...方式之后,就一直不太知道怎么定位到詳細(xì)的程序crush
位置,這兩天程序需要用到這方面,于是就查了一下。
需要使用traceback包
importtraceback
try:
#以除0錯(cuò)誤為例
3/0
exceptException,e:
#這個(gè)是輸出錯(cuò)誤類(lèi)別的,如果捕捉的是通用錯(cuò)誤,其實(shí)這個(gè)看不出來(lái)什么
print'str(Exception):\t',str(Exception)#輸出str(Exception):
#這個(gè)是輸出錯(cuò)誤的具體原因,這步可以不用加str,輸出
print'str(e):\t\t',str(e)#輸出str(e):integerdivisionormodulobyzero
print'repr(e):\t',repr(e)#輸出repr(e):ZeroDivisionError('integerdivisionormodulobyzero',)
print'traceback.print_exc():';
#以下兩步都是輸出錯(cuò)誤的具體位置的
traceback.print_exc()
print'traceback.format_exc():\n%s'%traceback.format_exc()
另外說(shuō)一下,Python2.6之后except那句可以換成exceptExceptionase了。
以上內(nèi)容為大家介紹了python培訓(xùn)之except報(bào)錯(cuò)怎么辦,希望對(duì)大家有所幫助,如果想要了解更多Python相關(guān)知識(shí),請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。