kuroko/test/testExceptionOnExceptExpression.krk
2023-11-24 18:32:16 +09:00

15 lines
291 B
Python

try:
try:
print('hello world')
raise ValueError()
except 1/0:
print("oh no")
except ValueError:
print("value error")
finally:
print('this is the finally')
except ZeroDivisionError:
print('caught the zero div error')
print('done')