Examveda

The following python code can work with . . . . . . . . parameters.
def f(x):
    def f1(*args, **kwargs):
           print("Examveda")
           return x(*args, **kwargs)
    return f1

A. 2

B. 1

C. any number of

D. 0

Answer: Option C


This Question Belongs to Python Program >> Formatting And Decorators

Join The Discussion

Related Questions on Formatting and Decorators