23 lines
173 B
Python
23 lines
173 B
Python
try:
|
|
f()
|
|
except A:
|
|
g()
|
|
except:
|
|
h()
|
|
|
|
try:
|
|
f()
|
|
except A:
|
|
g()
|
|
except B as c:
|
|
h()
|
|
|
|
try:
|
|
f()
|
|
except A:
|
|
g()
|
|
except B as c:
|
|
h()
|
|
except:
|
|
i()
|