def function(arg1,arg2,arg3,....):
do...something
arg1 = 2
arg2 = 3
function(arg1,arg2,arg3,....)
The number of arguments can change depending upon the user input.It can be 2 or 3 or 10 or 15 or anything.
I need to able to pass as many arguments as needed not more or less. The statement should be adaptable.