Why do we need the “finally” clause in Python?

It makes a difference if you return early: try: run_code1() except TypeError: run_code2() return None # The finally block is run before the method returns finally: other_code() Compare to this: try: run_code1() except TypeError: run_code2() return None other_code() # This doesn’t get run if there’s an exception. Other situations that can cause differences: If an … Read more