Files

9 lines
118 B
Python

def f(g):
try:
x = g()
except Exception:
x = g()
finally:
pass
print(x) #pass