最佳答案
我不确定为什么在try...except...finally
语句中需要finally
。在我看来,这个代码块
try:
run_code1()
except TypeError:
run_code2()
other_code()
与使用finally
的这个相同:
try:
run_code1()
except TypeError:
run_code2()
finally:
other_code()
我遗漏了什么吗?