What is the output of the following Python code?
def fun():
    try:
        return 3
    finally:
        return 7
k = fun()
print(k)


Posted on by