Is it possible to pass functions with arguments to another function in Python?
Say for something like:
def Perform ( function ) :
function
but the functions to be passed will be like:
Action1()
Action2(p)
Action3(p,r)
|
|
|
Do you mean this?
|
||||
|
|
|
This is what lambda is for:
|
|||||||||||||||||||||
|
|
Use functools.partial, not lambdas! And ofc Perform is a useless function, you can pass around functions directly.
|
|||
|
|
You can use the partial function from functools like so.
Also works with keywords
|
|||
|
|
|
(months later) a tiny real example where lambda is useful, partial not:
As far as I know,
(How to add tags numpy, partial, lambda to this ?) |
|||
|
|