Suppose I have a function with 10 args:
def foo(arg1,arg2,arg3,arg4.....):
Sometimes, I need to call it with only arg1 and another time arg1, arg4, or arg4 , arg7.
My program doesn't specify the type of the function call. Does python have a way to help me?
def foo(arg1 = val, arg2 = val2, arg3 = val3,...):