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.
23 lines
333 B
23 lines
333 B
def func1():
|
|
try:
|
|
return "it worked"
|
|
finally:
|
|
print("finally 1")
|
|
|
|
print(func1())
|
|
|
|
|
|
def func2():
|
|
try:
|
|
return "it worked"
|
|
finally:
|
|
print("finally 2")
|
|
|
|
def func3():
|
|
try:
|
|
s = func2()
|
|
return s + ", did this work?"
|
|
finally:
|
|
print("finally 3")
|
|
|
|
print(func3())
|
|
|