Question 13
What will be the output on the terminal for the given Python code snippet.
def f1(a=4,b=5): def f2(x, y): if y==5: print("HiFive") print("inside f2_func") print("inside f1_func") f2(a,b)
@f1def f3(): passprint(f3)