try:
block
except1:
except2:
...
如果block中出现了except,那么会先取匹配except1,如果匹配了,进行处理,程序继续执行。
如果except1没有匹配上,那么继续匹配except2。
如果该层的try except都没有匹配到,那么就会去外层的try except去匹配,直到匹配到为止。
本文共 217 字,大约阅读时间需要 1 分钟。
try:
block
except1:
except2:
...
如果block中出现了except,那么会先取匹配except1,如果匹配了,进行处理,程序继续执行。
如果except1没有匹配上,那么继续匹配except2。
如果该层的try except都没有匹配到,那么就会去外层的try except去匹配,直到匹配到为止。
转载于:https://www.cnblogs.com/hustdc/p/7128578.html