python try catch是什么?讓我們一起來了解下。
1、解析
python try是用來捕獲異常。如果某段代碼發(fā)生了錯誤,可以用try來運行這段代碼;如果try的代碼塊出現(xiàn)錯誤,則try代碼省下的代碼不會繼續(xù)執(zhí)行,而是直接跳轉到catch代碼塊,catch就是錯誤處理代碼塊。
2、案例
(1)捕獲異常的方式
try:
a = b
b = c
except Exception,data:
print Exception,":",data
'''輸出:<type 'exceptions.Exception'> : local variable 'b'
referenced before assignment '
(2)采用sys模塊回溯最后的異常
try:
a = b
b = c
except:
info = sys.exc_info()
print info
print info[0]
print info[1]
'''輸出:
(<type 'exceptions.UnboundLocalError'>, UnboundLocalError("local
variable 'b' referenced before assignment",),
<traceback object at 0x00D243F0>)
<type 'exceptions.UnboundLocalError'>
local variable 'b' referenced before assignment
'''
今天的分享就是這些,希望能幫助大家。
聲明:本網(wǎng)頁內容旨在傳播知識,若有侵權等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com