niXforums Forum Index
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   PreferencesPreferences   Log in to check your private messagesLog in to check your private messages   Log inLog in 
·  nixdoc.net ·  man pages ·  Linux HOWTOs ·  FreeBSD Tips ·  Forums
navigation Forum index » Programming » python
question about what lamda does
Post new topic   Reply to topic Page 1 of 2 [17 Posts] View previous topic :: View next topic
Goto page:  1, 2 Next
Author Message
bruno modulix
*nix forums Guru


Joined: 21 Feb 2005
Posts: 819

PostPosted: Fri Jul 21, 2006 1:03 pm    Post subject: Re: question about what lamda does Reply with quote

danielx wrote:
Quote:
Bruno Desthuilliers wrote:

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 Wink. The reason is that you really want to put each
case on its own set of lines.

An expression can span several lines.

Quote:
This enhances readability at the expense
of terseness. Since Python's statements are terminated by a newline,

or by a ';'

Quote:
it
would be rather awkward to have a kind of expression where good style
calls for it to be spread out accross multiple lines.

I must be pretty dumb, but I don't see how this relate to the problem of
case analysis in lambda expressions ?

Quote:
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.

Sorry for being pragmatic !-)

Quote:
For instance, if
you have a bunch of cases, you might not way to apply the same set of
arguments to all of them.

return {
'case1' : lambda: someFunc(args1),
'case2' : lambda: someFunc(args2),
'case3' : lambda: someOtherFunc(args1, arg42),
}.get(predicate, lambda: 0)()

Still no need for eval()...

Now of course there are limits to the exercice, and we're still far away
from ML-like pattern matching or Lisp 'case' forms. As you noted, Python
is a statement-based language, not an expression-based one like Lisp.
This makes a definitive difference.

Quote:
Also, let's not get distracted from the main point about how doing case
analysis in an expression is ugly,

Ugliness is in the eyes of the beholder <wink>

Quote:
making lambda's weaker in Python
than in the language which inspired them.

The fact is that Python "lambdas" are *not* Lisp lambdas. Python
"lambdas" are mostly a handy trick to turn a *simple* expression into a
closure - and definitively not a basic building block of the language.

Daniel, I of course do agree that Python lambdas are nothing near Lisp
lambdas - FWIW, Python is not Lisp neither -, but that looks like an
apple and banana comparison to me... IMHO, the most obvious problem with
Python lambdas is the word "lambda" !-)


--
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

PostPosted: Thu Jul 20, 2006 9:02 pm    Post subject: Re: question about what lamda does Reply with quote

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 Wink. 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
bruno modulix
*nix forums Guru


Joined: 21 Feb 2005
Posts: 819

PostPosted: Thu Jul 20, 2006 3:06 pm    Post subject: Re: question about what lamda does Reply with quote

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 Wink. 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
nephish@xit.net
*nix forums addict


Joined: 25 Jul 2005
Posts: 94

PostPosted: Thu Jul 20, 2006 1:53 pm    Post subject: Re: question about what lamda does Reply with quote

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 Wink. 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
danielx
*nix forums beginner


Joined: 18 Jul 2006
Posts: 8

PostPosted: Thu Jul 20, 2006 12:52 am    Post subject: Re: question about what lamda does Reply with quote

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 Wink
Quote:


Whereas, a lambda has no name; it's "anonymous":

Quote:
spam = lambda: 1
spam
function <lambda> at 0x009D80F0

# ^ spam has an identity crisis Wink
Quote:


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 Wink. 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
Iain King
*nix forums addict


Joined: 16 Sep 2005
Posts: 70

PostPosted: Wed Jul 19, 2006 9:49 am    Post subject: Re: question about what lamda does Reply with quote

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


Quote:
regards
Steve



Quote:
--
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
Steve Holden
*nix forums Guru


Joined: 22 Feb 2005
Posts: 1255

PostPosted: Wed Jul 19, 2006 7:16 am    Post subject: Re: question about what lamda does Reply with quote

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
grebekel@gmail.com
*nix forums beginner


Joined: 18 Jul 2006
Posts: 2

PostPosted: Tue Jul 18, 2006 5:25 pm    Post subject: Re: question about what lamda does Reply with quote

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
tactics40@gmail.com
*nix forums beginner


Joined: 13 Jun 2006
Posts: 33

PostPosted: Tue Jul 18, 2006 4:05 pm    Post subject: Re: question about what lamda does Reply with quote

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
Steve Holden
*nix forums Guru


Joined: 22 Feb 2005
Posts: 1255

PostPosted: Tue Jul 18, 2006 3:56 pm    Post subject: Re: question about what lamda does Reply with quote

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
Sreeram Kandallu
*nix forums addict


Joined: 02 Jun 2006
Posts: 58

PostPosted: Tue Jul 18, 2006 3:53 pm    Post subject: Re: question about what lamda does Reply with quote

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
grebekel@gmail.com
*nix forums beginner


Joined: 18 Jul 2006
Posts: 2

PostPosted: Tue Jul 18, 2006 3:38 pm    Post subject: Re: question about what lamda does Reply with 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.

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
nephish@xit.net
*nix forums addict


Joined: 25 Jul 2005
Posts: 94

PostPosted: Tue Jul 18, 2006 2:57 pm    Post subject: Re: question about what lamda does Reply with quote

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,yMad*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
vatamane@gmail.com
*nix forums beginner


Joined: 01 Jul 2006
Posts: 43

PostPosted: Tue Jul 18, 2006 11:47 am    Post subject: Re: question about what lamda does Reply with 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,yMad*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

PostPosted: Tue Jul 18, 2006 11:34 am    Post subject: Re: question about what lamda does Reply with quote

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
Google

Back to top
Display posts from previous:   
Post new topic   Reply to topic Page 1 of 2 [17 Posts] Goto page:  1, 2 Next
View previous topic :: View next topic
The time now is Fri Nov 21, 2008 11:37 pm | All times are GMT
navigation Forum index » Programming » python
Jump to:  

Similar Topics
Topic Author Forum Replies Last Post
No new posts Newbie question: How to forward a domain to a mailbox? leei Postfix 0 Fri Aug 24, 2007 4:55 pm
No new posts configuration question for httpd Karl Wang Apache 1 Fri Jul 21, 2006 2:10 pm
No new posts nim problem/question Ron AIX 0 Fri Jul 21, 2006 1:57 pm
No new posts question for JAVA developer who r using postgres sql as b... deepak pal PostgreSQL 1 Fri Jul 21, 2006 9:00 am
No new posts Encryption Question dtuttle1@gmail.com Berkeley DB 2 Thu Jul 20, 2006 10:09 pm

Advertising | Mortgage Calculator | Bad Credit Loan | WoW Gold | Credit Card Debt Consolidation
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
[ Time: 0.3883s ][ Queries: 16 (0.2106s) ][ GZIP on - Debug on ]