adplus-dvertising
frame-decoration

Question

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.

1

c.

any number of

d.

0

Answer: (c).any number of

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. The code shown above can work with ____ parameters.