You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
530 B
19 lines
530 B
def foo(x):
|
|
for i in range(x):
|
|
for j in range(x):
|
|
try:
|
|
print(x, i, j, 1)
|
|
finally:
|
|
try:
|
|
try:
|
|
print(x, i, j, 2)
|
|
finally:
|
|
try:
|
|
1 / 0
|
|
finally:
|
|
print(x, i, j, 3)
|
|
break
|
|
finally:
|
|
print(x, i, j, 4)
|
|
break
|
|
print(foo(4))
|
|
|