A regular function can contain a call to itself in its definition, no problem. I can't figure out how to do it with a lambda function though for the simple reason that the lambda function has no name to refer back to. Is there a way to do it? How?
|
2
|
|||||||||||||
|
|
|
The only way I can think of to do this amounts to giving the function a name:
or alternately, for earlier versions of python:
Update: using the ideas from the other answers, I was able to wedge the factorial function into a single unnamed lambda:
So it's possible, but not really recommended! |
||||
|
|
|
You can't directly do it, because it has no name. But with a helper function like the Y-combinator Lemmy pointed to, you can create recursion by passing the function as a parameter to itself (as strange as that sounds):
This prints the first ten Fibonacci numbers: |
||||
|
|
|
I have never used Python, but this is probably what you are looking for. |
||
|
|
|
|
If you were truly masochistic, you might be able to do it using C extensions, but to echo Greg (hi Greg!), this exceeds the capability of a lambda (unnamed, anonymous) functon. No. (for most values of no). |
||
|
|
|
|
Yes. I have two ways to do it, and one was already covered. This is my preferred way.
|
||||||||||
|
