Live Engine
Select Topic
easyException Handling
What does this print, and in what order do the four blocks execute?
Code
def run():
try:
return "try"
except Exception:
return "except"
else:
return "else"
finally:
print("finally")
print(run())