I require a simple method to pass only required arguments to a function which takes in multiple arguments.
def sample1(arg1=0,arg2=0,arg3=0 ... ... argn=0)
Argument Dictionary
argument_dictionary={'arg1':0,'arg4':1}
I want to iterate through the argument_dictionary and pass only arg1 and arg4 to sample1 as
sample1(arg1=0,arg4=1)