The number of arguments that can be passed in the given python program is ________.
def fun1(*args, **kwargs):
print("quizall")
return (*args, **kwargs)
1
1
2
2
3
0
4
infinite
The number of arguments that can be passed in the given python program is ________.
def fun1(*args, **kwargs):
print("quizall")
return (*args, **kwargs)