Python 7天快速入門完整視頻教程:https://www.bilibili.com/video/BV1o84y1Z7J1
Python 異常的傳遞性
異常是具有傳遞性的,假如方法A調用方法B,方法B調用方法C,如果方法C代碼出現(xiàn)異常,并且沒有處理異常,則會傳遞給方法B,同理,如果B依然沒有處理異常,則最終傳遞給方法A。
def funC():
print("funC開始")
a = 1 / 0
print("funC結束")
def funB():
print("funB開始")
funC()
print("funB結束")
def funA():
print("funA開始")
funB()
print("funA結束")
try:
funA()
except Exception as e:
print(e)