Ben Chuanlong Du's Blog

It is never too late to learn.

Error Handling in Rust

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

The try/except/finally Block in Python

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Tips and Traps

  1. The finally statements are guaranteed to be executed (presuming no power outage or anything outside of Python's control) after a try/except block runs even if return, break