kuroko/test/testTryElse.krk

27 lines
425 B
Python
Raw Permalink Normal View History

2022-07-29 13:33:31 +03:00
try:
print('totally fine')
except:
print('impossible!')
else:
print('good to go')
finally:
print('then the finally')
try:
print('totally fine')
except:
print('impossible!')
else:
print('good to go')
try:
print('in the try')
raise ValueError()
print('oh no, fail')
except:
print('does the except')
else:
print('should not happen, fail')
finally:
print('does the finally')