Question 13
Consider the following Python code.
File name: main.py
def funA(func): def inner_wrapper(): print("Wrapper function of funA") res1 = func() res2 = func() return res1, res2
return inner_wrapper
@funAdef funB(): return "I am from funB"
print(funB())What will be the output, when running the above code using the command “python main.py”?