Let's Talk About Lambda Functions!

Emile van Sebille emile at fenx.com
Sun Aug 4 23:19:32 EDT 2002


John Roth
> For example (and this is the example in the draft PEP on my disk)
>
> x = (
>     def (a, b):
>         print a
>         print b
>     )
>

I have little doubt I'm missing the point here, having just got back
from a week off, but how does this differ from:

def x(a, b):
    print a
    print b

?

--

Emile van Sebille
emile at fenx.com

---------




More information about the Python-list mailing list