I'm just beginning Python and ran head first into Lambda- which took me a while to figure out. Is lambda one of those 'interesting' language items that in real life should be forgotten? I'm sure there are some edge cases where it might be needed, but given the obscurity of it, the potential of it being redefined in future releases (my assumption based on the various definitions of it) and the reduced coding clarity - should it be avoided? This reminds me of overflowing (buffer overflow) of C types - pointing to the top variable and overloading to set the other field values...sort of a techie showmanship but maintenance coder nightmare..
|
|
Are you talking about lambda functions? Like
Those things are actually quite useful. Python supports a style of programming called functional programming where you can pass functions to other functions to do stuff. Example:
sets
Of course, in this particular case, you could do the same thing as a list comprehension:
(or even as
I use lambda functions on a regular basis. It took a while to get used to them but once I did I'm glad Python has them ;-) |
|||||||||||||||||||||
|
|
A lambda is part of a very important abstraction mechanism which deals with higher order functions. To get proper understanding of its value, please watch high quality lessons from Abelson and Sussman, and read the book SICP These are relevant issues in modern software business, and becoming ever more popular. |
|||||||||||||||||||||
|
|
The two-line summary:
|
|||
|
|
|
I doubt lambda will go away. See Guido's post about finally giving up trying to remove it. http://mail.python.org/pipermail/python-dev/2006-February/060415.html You might check out this post for more of a history about the deal behind Python's functional features: http://python-history.blogspot.com/2009/04/origins-of-pythons-functional-features.html
My own two cents: Rarely is lambda worth it as far as clarity goes. Generally there is a more clear solution that doesn't include lambda. |
|||
|
Pretty much anything you can do with Consequently, for the most part you should just one of those in basically any situation (except maybe for scratch code written in the interactive interpreter). |
|||||||||||||||||||||
|
|
As stated above, the lambda operator in Python defines an anonymous function, and in Python functions are closures. It is important not to confuse the concept of closures with the operator lambda, which is merely syntactic methadone for them. When I started in Python a few years ago, I used lambdas a lot, thinking they were cool, along with list comprehensions. However, I wrote and have to maintain a big website written in Python, with on the order of several thousand function points. I've learnt from experience that lambdas might be OK to prototype things with, but offer nothing over inline functions (named closures) except for saving a few key-stokes, or sometimes not. Basically this boils down to several points:
That's enough reason to round them up and convert them to named closures. However, I hold two other grudges against anonymous closures. The first grudge is simply that they are just another unnecessary keyword cluttering up the language. The second grudge is deeper and on the paradigm level, i.e. I do not like that they promote a functional-programming style, because that style is less flexible than the message passing, object oriented or procedural styles, because the lambda calculus is not Turing-complete (luckily in Python, we can still break out of that restriction even inside a lambda). The reasons I feel lambdas promote this style are:
I try hard to write lambda-free Python, and remove lambdas on sight. I think Python would be a slightly better language without lambdas, but that's just my opinion. |
|||||||
|
|
lambdas are extremely useful in GUI programming. For example, lets say you're creating a group of buttons and you want to use a single paramaterized callback rather than a unique callback per button. Lambda lets you accomplish that with ease:
The alternative is to create a separate callback for each button which can lead to duplicated code. |
|||
|
|
|
I've been using Python for a few years and I've never run in to a case where I've needed lambda. Really, as the tutorial states, it's just for syntactic sugar. |
|||||
|
|
It just defines a function of
You see? It's one of the most natural things to do in programming. |
|||
|
|
|
I find lambda useful for a list of functions that do the same, but for different circumstances. Like the mozilla plural rules.
If you'd have to define a function for all of those you'd go mad by the end of it. Also it wouldn't be nice with function names like plural_rule_1, plural_rule_2, etc. And you'd need to eval() it when you're depending on a variable function id. |
||||
|
|
I can't speak to python's particular implementation of lambda, but in general lambda functions are really handy. They're a core technique (maybe even THE technique) of functional programming, and they're also very useuful in object-oriented programs. For certain types of problems, they're the best solution, so certainly shouldn't be forgotten! I suggest you read up on closures and the map function (that links to python docs, but it exists in nearly every language that supports functional constructs) to see why it's useful. |
|||||
|
|
One of the nice things about Many library routines are implemented so that they allow certain parameters to be callables (of whom lambda is one). The idea is that the actual value will be computed only at the time when it's going to be used (rather that when it's called). An (contrived) example might help to illustrate the point. Suppose you have a routine which which was going to do log a given timestamp. You want the routine to use the current time minus 30 minutes. You'd call it like so
Now suppose the actual function is going to be called only when a certain event occurs and you want the timestamp to be computed only at that time. You can do this like so
Assuming the There are of course alternate ways to do this (using the Update: Here is a slightly more concrete real world example. |
|||
|
|
|
Lambdas are deeply liked to functional programming style in general. The idea that you can solve problems by applying a function to a data, and merging the results, is what google uses to implement most of its algorithms. Programs written in functional rpogramming style, are easily parrallelized and hence are becoming more and more important with modern multiu core machiines. So in short, NO you should not forget them. |
|||
|
|
|
In Python,
and..
..are the exact same. There is nothing you can do with lambda which you cannot do with a regular function - in Python functions are an object just like anything else, and lambdas simply define a function:
I honestly think the lambda keyword is redundant in Python - I have never had the need to use them (or seen one used where a regular function, a list-comprehension or one of the many builtin functions could have been better used instead) For a completely random example, from the article "Python’s lambda is broken!":
I would argue, even if that did work, it's horribly and "unpythonic", the same functionality could be written in countless other ways, for example:
Yes, it's not the same, but I have never seen a cause where generating a group of lambda functions in a list has been required.. It might make sense in other languages, but Python is not Haskell (or Lisp, or ...) |
|||
|
|
First congrats that managed to figure out lambda. In my opinion this is really powerful construct to act with. The trend these days towards functional programming languages is surely an indicator that it neither should be avoided nor it will be redefined in the near future. You just have to think a little bit different. I'm sure soon you will love it. But be careful if you deal only with python. Because the lambda is not a real closure, it is "broken" somehow: pythons lambda is broken |
|||||||
|
|
Lambda is a procedure constructor. You can synthesize programs at run-time, although Python's lambda is not very powerful. Note that few people understand that kind of programming. |
|||
|
|
Note that this isn't a condemnation of anything. Everybody has a different set of things that don't come easily.
No.
It's not obscure. The past 2 teams I've worked on, everybody used this feature all the time.
I've seen no serious proposals to redefine it in Python, beyond fixing the closure semantics a few years ago.
It's not less clear, if you're using it right. On the contrary, having more language constructs available increases clarity.
Lambda is like buffer overflow? Wow. I can't imagine how you're using lambda if you think it's a "maintenance nightmare". |
|||||
|
|
I use it quite often, mainly as a null object or to partially bind parameters to a function. Here are examples: to implement null object pattern:
for parameter binding:let say that I have the following API
Then, when I wan't to quickly dump the recieved data to a file I do that:
|
|||
|
|
|
I started reading David Mertz's book today 'Text Processing in Python.' While he has a fairly terse description of Lambda's the examples in the first chapter combined with the explanation in Appendix A made them jump off the page for me (finally) and all of a sudden I understood their value. That is not to say his explanation will work for you and I am still at the discovery stage so I will not attempt to add to these responses other than the following: I am new to Python I am new to OOP Lambdas were a struggle for me Now that I read Mertz, I think I get them and I see them as very useful as I think they allow a cleaner approach to programming. He reproduces the Zen of Python, one line of which is Simple is better than complex. As a non-OOP programmer reading code with lambdas (and until last week list comprehensions) I have thought-This is simple?. I finally realized today that actually these features make the code much more readable, and understandable than the alternative-which is invariably a loop of some sort. I also realized that like financial statements-Python was not designed for the novice user, rather it is designed for the user that wants to get educated. I can't believe how powerful this language is. When it dawned on me (finally) the purpose and value of lambdas I wanted to rip up about 30 programs and start over putting in lambdas where appropriate. |
|||
|
|
|
I can give you an example where I actually needed lambda serious. I'm making a graphical program, where the use right clicks on a file and assigns it one of three options. It turns out that in Tkinter (the GUI interfacing program I'm writing this in), when someone presses a button, it can't be assigned to a command that takes in arguments. So if I chose one of the options and wanted the result of my choice to be: print 'hi there' Then no big deal. But what if I need my choice to have a particular detail. For example, if I choose choice A, it calls a function that takes in some argument that is dependent on the choice A, B or C, TKinter could not support this. Lamda was the only option to get around this actually... |
|||
|
|
|
A useful case for using lambdas is to improve the readability of long list comprehensions.
In this example
Instead of
|
||||
|
|