Question 13
Consider the following Python code snippet.
from math import factorial
def prettify(func): def wrapper(num): try: return func(num) except: return "Please check your number!" return wrapper
@prettifydef fact(num): return factorial(num)
out = fact(5)print(out)What will the output if the above Python code is run on the terminal?