0 votes
in Python by
The code shown above can work with ____ parameters.

def f(x):
    def f1(*args, **kwargs):
           print("Sanfoundry")
           return x(*args, **kwargs)
    return f1

a. 2
b. 0
c. any number of
d. 1
...