|
|
|
|
|
|
| Author |
Message |
Dan Bishop *nix forums addict
Joined: 24 Feb 2005
Posts: 91
|
Posted: Tue Jul 18, 2006 3:04 am Post subject:
Re: question about what lamda does
|
|
|
nephish@xit.net wrote:
| Quote: | Hey there,
i have been learning python for the past few months, but i can seem to
get what exactly a lamda is for.
|
It defines a function.
f = lambda x, y: expression
is equivalent to
def f(x, y):
return expression
Note that lambda is an expression while def is a statement.
| Quote: | What would i use a lamda for that i
could not or would not use a def for ? Is there a notable difference ?
I only ask because i see it in code samples on the internet and in
books.
|
Lambdas are typically used as parameters to functions that take
functions as arguments, like property() and reduce(). You never *need*
to use one, but sometimes it's convenient. |
|
| Back to top |
|
 |
nephish@xit.net *nix forums addict
Joined: 25 Jul 2005
Posts: 94
|
Posted: Tue Jul 18, 2006 11:34 am Post subject:
Re: question about what lamda does
|
|
|
ok, i think i get it.
pretty cool.
thanks
-sk
Dan Bishop wrote:
| Quote: | nephish@xit.net wrote:
Hey there,
i have been learning python for the past few months, but i can seem to
get what exactly a lamda is for.
It defines a function.
f = lambda x, y: expression
is equivalent to
def f(x, y):
return expression
Note that lambda is an expression while def is a statement.
What would i use a lamda for that i
could not or would not use a def for ? Is there a notable difference ?
I only ask because i see it in code samples on the internet and in
books.
Lambdas are typically used as parameters to functions that take
functions as arguments, like property() and reduce(). You never *need*
to use one, but sometimes it's convenient. |
|
|
| Back to top |
|
 |
vatamane@gmail.com *nix forums beginner
Joined: 01 Jul 2006
Posts: 43
|
Posted: Tue Jul 18, 2006 11:47 am Post subject:
Re: question about what lamda does
|
|
|
Use it anywhere a quick definition of a function is needed that can be
written as an expression. For example when a callback function is
needed you could say:
def callback(x,y):
return x*y
some_function(when_done_call_this=callback)
But with lambda you could just write
some_function(when_done_call_this=lambda x,y *y)
Note: because it is an _expression_ you cannot do stuff like 'if..else'
inside of lambda.
-Nick V.
nephish@xit.net wrote:
| Quote: | Hey there,
i have been learning python for the past few months, but i can seem to
get what exactly a lamda is for. What would i use a lamda for that i
could not or would not use a def for ? Is there a notable difference ?
I only ask because i see it in code samples on the internet and in
books.
thanks for any clarity
sk |
|
|
| Back to top |
|
 |
nephish@xit.net *nix forums addict
Joined: 25 Jul 2005
Posts: 94
|
Posted: Tue Jul 18, 2006 2:57 pm Post subject:
Re: question about what lamda does
|
|
|
so a lamda needs to stay at one expression, and use more than one lamda
for more expressions ?
i think i get it.
sk
Nick Vatamaniuc wrote:
| Quote: | Use it anywhere a quick definition of a function is needed that can be
written as an expression. For example when a callback function is
needed you could say:
def callback(x,y):
return x*y
some_function(when_done_call_this=callback)
But with lambda you could just write
some_function(when_done_call_this=lambda x,y *y)
Note: because it is an _expression_ you cannot do stuff like 'if..else'
inside of lambda.
-Nick V.
nephish@xit.net wrote:
Hey there,
i have been learning python for the past few months, but i can seem to
get what exactly a lamda is for. What would i use a lamda for that i
could not or would not use a def for ? Is there a notable difference ?
I only ask because i see it in code samples on the internet and in
books.
thanks for any clarity
sk |
|
|
| Back to top |
|
 |
grebekel@gmail.com *nix forums beginner
Joined: 18 Jul 2006
Posts: 2
|
Posted: Tue Jul 18, 2006 3:38 pm Post subject:
Re: question about what lamda does
|
|
|
The two primary differences between using def and using lambda is that
lambda is limited to a single expression and def cannot be used within
another function.
Basically, use lambda when you need to define a small function within
another function. I've also used it to create 'shortcut' functions as:
bar = lambda a, b: object1.object2.function1( a ).function2( b )
foo = bar( somevalue1, somevalue2 )
It can save you a lot of typing if used wisely, and makes your code
smaller and neater too :)
On a real world example:
import random
roll_die = lambda sides=6: random.choice( range(1,sides+1) )
# roll dies with 4, 6, and 20 sides
print roll_die(4), roll_die(), roll_die(20)
Have fun with your lambdas.
greb
nephish@xit.net wrote:
| Quote: | Hey there,
i have been learning python for the past few months, but i can seem to
get what exactly a lamda is for. What would i use a lamda for that i
could not or would not use a def for ? Is there a notable difference ?
I only ask because i see it in code samples on the internet and in
books.
thanks for any clarity
sk |
|
|
| Back to top |
|
 |
Sreeram Kandallu *nix forums addict
Joined: 02 Jun 2006
Posts: 58
|
Posted: Tue Jul 18, 2006 3:53 pm Post subject:
Re: question about what lamda does
|
|
|
grebekel@gmail.com wrote:
| Quote: | The two primary differences between using def and using lambda is that
lambda is limited to a single expression and def cannot be used within
another function.
|
'def' can certainly be used within another function :
def make_adder( delta ) :
def adder( x ) :
return x + delta
return adder
[sreeram;] |
|
| Back to top |
|
 |
Steve Holden *nix forums Guru
Joined: 22 Feb 2005
Posts: 1255
|
Posted: Tue Jul 18, 2006 3:56 pm Post subject:
Re: question about what lamda does
|
|
|
grebekel@gmail.com wrote:
| Quote: | The two primary differences between using def and using lambda is that
lambda is limited to a single expression and def cannot be used within
another function.
Where on earth did you get that from? I presume you mean "You can't use |
a def statement as an argument to a function"?
There is nothing wrong with
def adder(x):
def func(y):
return x+y
return func
for example. Then adder(5) returns a function that returns 5 more than
its argument.
regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://holdenweb.blogspot.com
Recent Ramblings http://del.icio.us/steve.holden |
|
| Back to top |
|
 |
tactics40@gmail.com *nix forums beginner
Joined: 13 Jun 2006
Posts: 33
|
Posted: Tue Jul 18, 2006 4:05 pm Post subject:
Re: question about what lamda does
|
|
|
nephish@xit.net wrote:
| Quote: | Hey there,
i have been learning python for the past few months, but i can seem to
get what exactly a lamda is for. What would i use a lamda for that i
could not or would not use a def for ? Is there a notable difference ?
I only ask because i see it in code samples on the internet and in
books.
|
Lambda is just as powerful as a function, but totally useless =-P
Lambda used to be handy before the introduction of list comprehensions.
Now, though, there primary use is obfuscating your code. |
|
| Back to top |
|
 |
grebekel@gmail.com *nix forums beginner
Joined: 18 Jul 2006
Posts: 2
|
Posted: Tue Jul 18, 2006 5:25 pm Post subject:
Re: question about what lamda does
|
|
|
I stand corrected. Not sure where I got that from, improper
defragmentation due to sleep depravation perhaps...
K.S.Sreeram wrote:
| Quote: | grebekel@gmail.com wrote:
The two primary differences between using def and using lambda is that
lambda is limited to a single expression and def cannot be used within
another function.
'def' can certainly be used within another function :
def make_adder( delta ) :
def adder( x ) :
return x + delta
return adder
[sreeram;]
--------------enigFDB411206B54B101CC680F5A
Content-Type: application/pgp-signature
Content-Disposition: inline;
filename="signature.asc"
Content-Description: OpenPGP digital signature
X-Google-AttachSize: 253 |
|
|
| Back to top |
|
 |
Steve Holden *nix forums Guru
Joined: 22 Feb 2005
Posts: 1255
|
Posted: Wed Jul 19, 2006 7:16 am Post subject:
Re: question about what lamda does
|
|
|
tac-tics wrote:
| Quote: | nephish@xit.net wrote:
Hey there,
i have been learning python for the past few months, but i can seem to
get what exactly a lamda is for. What would i use a lamda for that i
could not or would not use a def for ? Is there a notable difference ?
I only ask because i see it in code samples on the internet and in
books.
Lambda is just as powerful as a function, but totally useless =-P
Lambda used to be handy before the introduction of list comprehensions.
Now, though, there primary use is obfuscating your code.
I do wish you could hold yourself back and stop muddying the waters. |
Lambdas and list comprehensions have little or nothing to do with each
other. Unless you know something I don't ...
regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://holdenweb.blogspot.com
Recent Ramblings http://del.icio.us/steve.holden |
|
| Back to top |
|
 |
Iain King *nix forums addict
Joined: 16 Sep 2005
Posts: 70
|
Posted: Wed Jul 19, 2006 9:49 am Post subject:
Re: question about what lamda does
|
|
|
Steve Holden wrote:
| Quote: | tac-tics wrote:
nephish@xit.net wrote:
Hey there,
i have been learning python for the past few months, but i can seem to
get what exactly a lamda is for. What would i use a lamda for that i
could not or would not use a def for ? Is there a notable difference ?
I only ask because i see it in code samples on the internet and in
books.
Lambda is just as powerful as a function, but totally useless =-P
Lambda used to be handy before the introduction of list comprehensions.
Now, though, there primary use is obfuscating your code.
I do wish you could hold yourself back and stop muddying the waters.
Lambdas and list comprehensions have little or nothing to do with each
other. Unless you know something I don't ...
|
I think he meant that lambda's main use before was inside map and
filter; as stated earlier in the thread, lambda's main use was for
passing simple functions as arguments, and of these map and filter must
have made up a majority (and then I'd guess TKinter would be next).
List comprehensions replace map and filter, so...
I wouldn't put it as explosively as he has, but I find a lambda less
clear than a def too.
Iain
|
|
| Back to top |
|
 |
danielx *nix forums beginner
Joined: 18 Jul 2006
Posts: 8
|
Posted: Thu Jul 20, 2006 12:52 am Post subject:
Re: question about what lamda does
|
|
|
nephish@xit.net wrote:
| Quote: | Hey there,
i have been learning python for the past few months, but i can seem to
get what exactly a lamda is for. What would i use a lamda for that i
could not or would not use a def for ? Is there a notable difference ?
I only ask because i see it in code samples on the internet and in
books.
thanks for any clarity
sk
|
hehe. Lambda's are kind of a sensative subject for pythoners who come
from Lisp. Guido being more of a C guy doesn't really like them, and
thought they should be removed in py3k. Last time I checked, he was
reconsidering because of public outcry, presumably from the Lisp crowd.
The standard reason for getting rid of it is "anywhere you need a
lambda, you can use a def". In addition to what has been said here,
there is another one small difference between lambda's and functions,
which is that when you use def, the object gets a name:
| Quote: | def foo(): pass
....
foo
function foo at 0x009D8230 |
# ^ foo knows its own name
| Quote: | bar
function foo at 0x009D8230 |
# ^ see
Whereas, a lambda has no name; it's "anonymous":
| Quote: | spam = lambda: 1
spam
function <lambda> at 0x009D80F0 |
# ^ spam has an identity crisis
Many people who do not come from Lisp do not understand what the use of
a lambda is (and I have no idea what the purpose of having a name is).
Even people who do question whether it belongs in Python. In Lisp,
lambda's are the way things get done, because you can calculate
anything using just defines and expressions. This style does not fit
Python very well, since we do things using statements.
Python's lambda really can't be as powerful as Lisp's because Python
does not have expressions that do case analysis (this is not lambda's
fault, of course . The reason is that you really want to put each
case on its own set of lines. This enhances readability at the expense
of terseness. Since Python's statements are terminated by a newline, it
would be rather awkward to have a kind of expression where good style
calls for it to be spread out accross multiple lines.
You can try to simulate these kinds expressions using into a list or
dictionary, but this becomes rather messy. I think the only way to get
this done properly is to use eval. For example:
def recursiveFunction(args):
... # do stuff...
choices = { True:"0", False:"recurisveFunction(newArgs)" }
return eval( choices[predicate] )
The reason that you need eval is that you want to prevent any cases
from being executed until you decide which one you want. This stay of
execution is accomplished by wrapping quotes around our expressions.
This example illustrates why we really need this kind of behavior,
because without it, we would fall into an infinite loop. Even if it
were safe to evaluate all cases, it's a big waste of time to do so.
Lastly, I think there is also a performance concern for certain uses of
lambda (correct me if I'm wrong). Say you have an expression with a
lambda in it where you could have used a def. Every time you evaluate
that expression, you have to construct a new lambda object, which takes
time. If you had used a def instead, you could hav avoided having to
construct multiple times. |
|
| Back to top |
|
 |
nephish@xit.net *nix forums addict
Joined: 25 Jul 2005
Posts: 94
|
Posted: Thu Jul 20, 2006 1:53 pm Post subject:
Re: question about what lamda does
|
|
|
hey thanks for that last post, although some of it was a bit over my
head.
i think i am getting more of the differences here.
thanks again,
sk
danielx wrote:
| Quote: | nephish@xit.net wrote:
Hey there,
i have been learning python for the past few months, but i can seem to
get what exactly a lamda is for. What would i use a lamda for that i
could not or would not use a def for ? Is there a notable difference ?
I only ask because i see it in code samples on the internet and in
books.
thanks for any clarity
sk
hehe. Lambda's are kind of a sensative subject for pythoners who come
from Lisp. Guido being more of a C guy doesn't really like them, and
thought they should be removed in py3k. Last time I checked, he was
reconsidering because of public outcry, presumably from the Lisp crowd.
The standard reason for getting rid of it is "anywhere you need a
lambda, you can use a def". In addition to what has been said here,
there is another one small difference between lambda's and functions,
which is that when you use def, the object gets a name:
def foo(): pass
...
foo
function foo at 0x009D8230
# ^ foo knows its own name
bar
function foo at 0x009D8230
# ^ see ;)
Whereas, a lambda has no name; it's "anonymous":
spam = lambda: 1
spam
function <lambda> at 0x009D80F0
# ^ spam has an identity crisis ;)
Many people who do not come from Lisp do not understand what the use of
a lambda is (and I have no idea what the purpose of having a name is).
Even people who do question whether it belongs in Python. In Lisp,
lambda's are the way things get done, because you can calculate
anything using just defines and expressions. This style does not fit
Python very well, since we do things using statements.
Python's lambda really can't be as powerful as Lisp's because Python
does not have expressions that do case analysis (this is not lambda's
fault, of course . The reason is that you really want to put each
case on its own set of lines. This enhances readability at the expense
of terseness. Since Python's statements are terminated by a newline, it
would be rather awkward to have a kind of expression where good style
calls for it to be spread out accross multiple lines.
You can try to simulate these kinds expressions using into a list or
dictionary, but this becomes rather messy. I think the only way to get
this done properly is to use eval. For example:
def recursiveFunction(args):
... # do stuff...
choices = { True:"0", False:"recurisveFunction(newArgs)" }
return eval( choices[predicate] )
The reason that you need eval is that you want to prevent any cases
from being executed until you decide which one you want. This stay of
execution is accomplished by wrapping quotes around our expressions.
This example illustrates why we really need this kind of behavior,
because without it, we would fall into an infinite loop. Even if it
were safe to evaluate all cases, it's a big waste of time to do so.
Lastly, I think there is also a performance concern for certain uses of
lambda (correct me if I'm wrong). Say you have an expression with a
lambda in it where you could have used a def. Every time you evaluate
that expression, you have to construct a new lambda object, which takes
time. If you had used a def instead, you could hav avoided having to
construct multiple times. |
|
|
| Back to top |
|
 |
bruno modulix *nix forums Guru
Joined: 21 Feb 2005
Posts: 819
|
Posted: Thu Jul 20, 2006 3:06 pm Post subject:
Re: question about what lamda does
|
|
|
danielx wrote:
(snip)
| Quote: | Python's lambda really can't be as powerful as Lisp's because Python
does not have expressions that do case analysis (this is not lambda's
fault, of course . The reason is that you really want to put each
case on its own set of lines. This enhances readability at the expense
of terseness. Since Python's statements are terminated by a newline, it
would be rather awkward to have a kind of expression where good style
calls for it to be spread out accross multiple lines.
You can try to simulate these kinds expressions using into a list or
dictionary, but this becomes rather messy. I think the only way to get
this done properly is to use eval. For example:
def recursiveFunction(args):
... # do stuff...
choices = { True:"0", False:"recurisveFunction(newArgs)" }
return eval( choices[predicate] )
|
Why do you want to use eval here ?
| Quote: | The reason that you need eval is that you want to prevent any cases
from being executed until you decide which one you want.
|
What about:
def recursiveFunction(args):
... # do stuff...
... # that defines 'newArgs' and 'predicate' of course ...
return (recursiveFunction, lambda x: 0)[predicate](newArgs)
--
bruno desthuilliers
python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
p in 'onurb@xiludom.gro'.split('@')])" |
|
| Back to top |
|
 |
danielx *nix forums beginner
Joined: 18 Jul 2006
Posts: 8
|
Posted: Thu Jul 20, 2006 9:02 pm Post subject:
Re: question about what lamda does
|
|
|
Bruno Desthuilliers wrote:
| Quote: | danielx wrote:
(snip)
Python's lambda really can't be as powerful as Lisp's because Python
does not have expressions that do case analysis (this is not lambda's
fault, of course . The reason is that you really want to put each
case on its own set of lines. This enhances readability at the expense
of terseness. Since Python's statements are terminated by a newline, it
would be rather awkward to have a kind of expression where good style
calls for it to be spread out accross multiple lines.
You can try to simulate these kinds expressions using into a list or
dictionary, but this becomes rather messy. I think the only way to get
this done properly is to use eval. For example:
def recursiveFunction(args):
... # do stuff...
choices = { True:"0", False:"recurisveFunction(newArgs)" }
return eval( choices[predicate] )
Why do you want to use eval here ?
The reason that you need eval is that you want to prevent any cases
from being executed until you decide which one you want.
What about:
def recursiveFunction(args):
... # do stuff...
... # that defines 'newArgs' and 'predicate' of course ...
return (recursiveFunction, lambda x: 0)[predicate](newArgs)
|
Sure, that works, but don't take things so literally. For instance, if
you have a bunch of cases, you might not way to apply the same set of
arguments to all of them.
Also, let's not get distracted from the main point about how doing case
analysis in an expression is ugly, making lambda's weaker in Python
than in the language which inspired them.
| Quote: |
--
bruno desthuilliers
python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
p in 'onurb@xiludom.gro'.split('@')])" |
|
|
| Back to top |
|
 |
Google
|
|
| Back to top |
|
 |
|
|
The time now is Fri Nov 21, 2008 6:33 pm | All times are GMT
|
|
Repair Bad Credit | Repair Bad Credit | Debt Consolidation | Advertising | Loans
|
|
Copyright © 2004-2005 DeniX Solutions SRL
|
|
|
|
Other DeniX Solutions sites:
Unix/Linux blog |
electronics forum |
medicine forum |
science forum |
|
|
Privacy Policy
|
Powered by phpBB © 2001, 2005 phpBB Group
|
|