18 lines
226 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
# nested exceptions
def f():
try:
foo()
except:
print("except 1")
try:
baz()
except:
print("except 2")
bar()
try:
f()
except:
print("f except")