1. 程式人生 > >python exception的傳遞

python exception的傳遞

exception python nbsp 行處理 傳遞 處理 就會 except 如果

try:

block

except1:

except2:

...

如果block中出現了except,那麽會先取匹配except1,如果匹配了,進行處理,程序繼續執行。

如果except1沒有匹配上,那麽繼續匹配except2。

如果該層的try except都沒有匹配到,那麽就會去外層的try except去匹配,直到匹配到為止。

python exception的傳遞