try:
block
except1:
except2:
...
如果block中出现了except,那么会先取匹配except1,如果匹配了,进行处理,程序继续执行。
如果except1没有匹配上,那么继续匹配except2。
如果该层的try except都没有匹配到,那么就会去外层的try except去匹配,直到匹配到为止。
2024-01-27 11:28:16
try:
block
except1:
except2:
...
如果block中出现了except,那么会先取匹配except1,如果匹配了,进行处理,程序继续执行。
如果except1没有匹配上,那么继续匹配except2。
如果该层的try except都没有匹配到,那么就会去外层的try except去匹配,直到匹配到为止。