4.1.3 try else
try:
# 写了几十行毫无问题的代码
# ...
some_dangarous_operation()
# ...
# 下面跟了几十行毫无问题的代码
except Exception as e:
# 处理异常# some_dangarous_operation 之前的安全代码写在这里
# ...
try:
some_dangarous_operation()
except Exception as e:
# 处理异常
else:
# ...
# 依赖于 some_dangarous_operation 的安全代码Last updated