demo_ref_keyword_finally.py:
try: x > 3 except: print("Something went wrong") else: print("Nothing went wrong") finally: print("The try...except block is finished")
C:\Users\My Name>python demo_keyword_finally.py
Something went wrong
The try...except block is finished