EasyOutput prediction
finally runs even when no exception occurs
What does this code print?
try:
x = 10 + 5
except ValueError:
print('error')
finally:
print('always')
print('after')← → arrow keys to navigate
Sign in to save your progress.