Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
2  
have you even tried it? – hop Jun 9 '11 at 9:52

4 Answers

Functions in Python are first-class objects. But your function definition is a bit off.

def myfunc(anotherfunc, extraArgs, extraKwArgs):
  return anotherfunc(*extraArgs, **extraKwArgs)
share|improve this answer

Can a python function be an argument of another function?

Yes.

def myfunc(anotherfunc, extraArgs):
    anotherfunc(*extraArgs)

To be more specific ... with various arguments ...

>>> def x(a,b):
...     print "param 1 %s param 2 %s"%(a,b)
... 
>>> def y(z,t):
...     z(*t)
... 
>>> y(x,("hello","manuel"))
param 1 hello param 2 manuel
>>> 
share|improve this answer
Wow, seems alot simpler than I expected :) – a7664 Jun 9 '11 at 7:50
3  
yes, that is Python ;) – msalvadores Jun 9 '11 at 7:51
if "extraArgs [your t] is a list/tuple of anotherfunc's arguments", you need a *-dereference. – DSM Jun 9 '11 at 7:55
You need to unpack the extraArgs in the call to anotherfunc. – Josh Caswell Jun 9 '11 at 7:56
Yes, I wanted it to keep it simple. But you right guys, I should have added the unpack operator. Done now! – msalvadores Jun 9 '11 at 8:03
  1. Yes, it's allowed.
  2. You use the function as you would any other: anotherfunc(*extraArgs)
share|improve this answer

Sure, that is why python implements the following methods where the first parameter is a function:

  • map(function, iterable, ...) - Apply function to every item of iterable and return a list of the results.
  • filter(function, iterable) - Construct a list from those elements of iterable for which function returns true.
  • reduce(function, iterable[,initializer]) - Apply function of two arguments cumulatively to the items of iterable, from left to right, so as to reduce the iterable to a single value.
  • lambdas
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.