try/else从句

我们常常想在没有触发异常的时候执行一些代码。这可以很轻松地通过一个else从句来达到。

有人也许问了:如果你只是想让一些代码在没有触发异常的情况下执行,为啥你不直接把代码放在try里面呢?
回答是,那样的话这段代码中的任意异常都还是会被try捕获,而你并不一定想要那样。

大多数人并不使用else从句,而且坦率地讲我自己也没有大范围使用。这里是个例子:

  1. try:
  2. print('I am sure no exception is going to occur!')
  3. except Exception:
  4. print('exception')
  5. else:
  6. # 这里的代码只会在try语句里没有触发异常时运行,
  7. # 但是这里的异常将 *不会* 被捕获
  8. print('This would only run if no exception occurs. And an error here '
  9. 'would NOT be caught.')
  10. finally:
  11. print('This would be printed in every case.')
  12. # Output: I am sure no exception is going to occur!
  13. # This would only run if no exception occurs.
  14. # This would be printed in every case.

else从句只会在没有异常的情况下执行,而且它会在finally语句之前执行。