try: raise Exception("Oh no! An error happened!") except Exception as err: print("An error was handled") finally: print("This runs either way.")