EasyOutput prediction

finally always runs

What does this code print?

try:
    x = int("bad")
except ValueError:
    print("caught")
finally:
    print("done")

← → arrow keys to navigate

Sign in to save your progress.