Can a python function be an argument of another function? say:
def myfunc(anotherfunc, extraArgs):
# run anotherfunc and also pass the values from extraArgs to it
pass
So this is basically two questions: 1) is it allowed at all? 2) and if it is, how to use the function inside the other function? Would I need to use exec(), eval() or something like that? Never needed to mess with them.
BTW, extraArgs is a list/tuple of anotherfunc's arguments.