EasyOutput prediction

finally always runs

What does this code print?

try:
    x = 1 / 0
except ZeroDivisionError:
    print('caught')
finally:
    print('cleanup')

← → arrow keys to navigate

Sign in to save your progress.

finally always runs - Python Error Handling Quiz | Unnested