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)
|
feedback
|
|
Do you mean this?
| ||||
|
feedback
|
|
This is what lambda is for:
| |||||||||||||||||||||
feedback
|
|
Use functools.partial, not lambdas! And ofc Perform is a useless function, you can pass around functions directly.
| |||
feedback
|
|
You can use the partial function from functools like so.
Also works with keywords
| |||
|
feedback
|
|
(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 ?) | |||
|
feedback
|