Which is more preferable to use in Python: lambda functions or nested functions ('def') ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T05:09:48Zhttp://stackoverflow.com/feeds/question/134626http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/134626/which-is-more-preferable-to-use-in-python-lambda-functions-or-nested-functions11Which is more preferable to use in Python: lambda functions or nested functions ('def') ?Ray Vega2008-09-25T17:15:03Z2009-10-20T09:39:56Z
<p>I mostly use lambda functions but sometimes use nested functions that seem to provide the same behavior. </p>
<p>Here are some trivial examples where they functionally do the same thing if either were found within another function:</p>
<p><strong>Lambda function</strong></p>
<pre><code>>>> a = lambda x : 1 + x
>>> a(5)
6
</code></pre>
<p><strong>Nested function</strong></p>
<pre><code>>>> def b(x): return 1 + x
>>> b(5)
6
</code></pre>
<p>Is there advantages to using one over the other? (Performance? Readability? Limitations? Consistency? etc.) Does it even matter? If doesn't then does that violate the Pythonic principle: <a href="http://en.wikipedia.org/wiki/Python_(programming_language)#Philosophy" rel="nofollow">“There should be one—and preferably only one—obvious way to do it”</a>.</p>
http://stackoverflow.com/questions/134626/which-is-more-preferable-to-use-in-python-lambda-functions-or-nested-functions/134638#13463817Answer by nosklo for Which is more preferable to use in Python: lambda functions or nested functions ('def') ?nosklo2008-09-25T17:16:31Z2008-09-25T23:07:12Z<p>If you need to assign the <code>lambda</code> to a name, use a <code>def</code> instead. <code>def</code>s are just syntactic sugar for an assignment, so the result is the same, and they are a lot more flexible and readable.</p>
<p><code>lambda</code>s can be used for <em>use once, throw away</em> functions which won't have a name.</p>
<p>However, this use case is very rare. You rarely need to pass around unnamed function objects.</p>
<p>The builtins <code>map()</code> and <code>filter()</code> need function objects, but <strong>list comprehensions</strong> and <strong>generator expressions</strong> are generally more readable than those functions and can cover all use cases, without the need of lambdas. </p>
<p>For the cases you really need a small function object, you should use the <code>operator</code> module functions, like <code>operator.add</code> instead of <code>lambda x, y: x + y</code></p>
<p>If you still need some <code>lambda</code> not covered, you might consider writing a <code>def</code>, just to be more readable. If the function is more complex than the ones at <code>operator</code> module, a <code>def</code> is probably better. </p>
<p>So, real world good <code>lambda</code> use cases are very rare.</p>
http://stackoverflow.com/questions/134626/which-is-more-preferable-to-use-in-python-lambda-functions-or-nested-functions/134664#1346644Answer by Dan for Which is more preferable to use in Python: lambda functions or nested functions ('def') ?Dan2008-09-25T17:19:48Z2008-09-25T17:19:48Z<p>I agree with nosklo's advice: if you need to give the function a name, use <code>def</code>. I reserve <code>lambda</code> functions for cases where I'm just passing a brief snippet of code to another function, e.g.:</p>
<pre><code>a = [ (1,2), (3,4), (5,6) ]
b = map( lambda x: x[0]+x[1], a )
</code></pre>
http://stackoverflow.com/questions/134626/which-is-more-preferable-to-use-in-python-lambda-functions-or-nested-functions/134709#1347096Answer by Chris Lawlor for Which is more preferable to use in Python: lambda functions or nested functions ('def') ?Chris Lawlor2008-09-25T17:29:26Z2008-09-25T17:29:26Z<p><a href="http://www.amk.ca/python/writing/gvr-interview" rel="nofollow">In this interview, </a> Guido van Rossum says he wishes he hadn't let 'lambda' into Python:</p>
<blockquote>
<p>"<strong>Q. What feature of Python are you least pleased with?</strong><br /><br />
Sometimes I've been too quick in accepting contributions, and later realized that it was a mistake. One example would be some of the functional programming features, such as lambda functions. lambda is a keyword that lets you create a small anonymous function; built-in functions such as map, filter, and reduce run a function over a sequence type, such as a list.<br /><br />
In practice, it didn't turn out that well. Python only has two scopes: local and global. This makes writing lambda functions painful, because you often want to access variables in the scope where the lambda was defined, but you can't because of the two scopes. There's a way around this, but it's something of a kludge. Often it seems much easier in Python to just use a for loop instead of messing around with lambda functions. map and friends work well only when there's already a built-in function that does what you want.</p>
</blockquote>
<p>IMHO, Iambdas can be convenient sometimes, but usually are convenient at the expense of readibility. Can you tell me what this does:</p>
<pre><code>str(reduce(lambda x,y:x+y,map(lambda x:x**x,range(1,1001))))[-10:]
</code></pre>
<p>I wrote it, and it took me a minute to figure it out. This is from Project Euler - i won't say which problem because i hate spoilers, but it runs in 0.124 seconds :)</p>
http://stackoverflow.com/questions/134626/which-is-more-preferable-to-use-in-python-lambda-functions-or-nested-functions/135353#1353532Answer by Andrew Gwozdziewycz for Which is more preferable to use in Python: lambda functions or nested functions ('def') ?Andrew Gwozdziewycz2008-09-25T19:13:39Z2008-09-25T19:13:39Z<p>The primary use of lambda has always been for simple callback functions, and for map, reduce, filter, which require a function as an argument. With list comprehensions becoming the norm, and the added allowed if as in:</p>
<pre><code>x = [f for f in range(1, 40) if f % 2]
</code></pre>
<p>it's hard to imagine a real case for the use of lambda in daily use. As a result, I'd say, avoid lambda and create nested functions.</p>
http://stackoverflow.com/questions/134626/which-is-more-preferable-to-use-in-python-lambda-functions-or-nested-functions/135815#1358150Answer by e-satis for Which is more preferable to use in Python: lambda functions or nested functions ('def') ?e-satis2008-09-25T20:26:14Z2008-09-25T20:26:14Z<p>I agree with nosklo. By the way, even with a <em>use once, throw away</em> function, most of the time you just want to use something from the operator module.</p>
<p>E.G : </p>
<p>You have a function with this signature : myFunction(data, callback function).</p>
<p>You want to pass a function that add 2 elements.</p>
<p>Using lambda :</p>
<pre><code>myFunction(data, (lambda x, y : x + y))
</code></pre>
<p>The pythonic way :</p>
<pre><code>import operator
myFunction(data, operator.add)
</code></pre>
<p>Or course this is a simple example, but there is a lot of stuff the operator module provides, including the items setters / getters for list and dict. Really cool.</p>
http://stackoverflow.com/questions/134626/which-is-more-preferable-to-use-in-python-lambda-functions-or-nested-functions/138625#1386255Answer by Thomas Vander Stichele for Which is more preferable to use in Python: lambda functions or nested functions ('def') ?Thomas Vander Stichele2008-09-26T10:20:43Z2009-10-20T09:39:56Z<p>Practically speaking, to me there are two differences:</p>
<p>The first is about what they do and what they return:</p>
<ul>
<li><p>def is a keyword that doesn't return anything and creates a 'name' in the local namespace.</p></li>
<li><p>lambda is a keyword that returns a function object and does not create a 'name' in the local namespace.</p></li>
</ul>
<p>Hence, if you need to call a function that takes a function object, the only way to do that in one line of python code is with a lambda. There's no equivalent with def.</p>
<p>In some frameworks this is actually quite common; for example, I use <a href="http://twistedmatrix.com/" rel="nofollow">Twisted</a> a lot, and so doing something like</p>
<pre><code>d.addCallback(lambda result: setattr(self, _someVariable, result))
</code></pre>
<p>is quite common, and more concise with lambdas.</p>
<p>The second difference is about what the actual function is allowed to do.</p>
<ul>
<li>A function defined with 'def' can contain any python code</li>
<li>A function defined with 'lambda' has to evaluate to an expression, and can thus not contain statements like print, import, raise, ... </li>
</ul>
<p>For example,</p>
<pre><code>def p(x): print x
</code></pre>
<p>works as expected, while</p>
<pre><code>lambda x: print x
</code></pre>
<p>is a SyntaxError.</p>
<p>Of course, there are workarounds - substitute <code>print</code> with <code>sys.stdout.write</code>, or <code>import</code> with <code>__import__</code>. But usually you're better off going with a function in that case.</p>
http://stackoverflow.com/questions/134626/which-is-more-preferable-to-use-in-python-lambda-functions-or-nested-functions/298045#2980450Answer by too much php for Which is more preferable to use in Python: lambda functions or nested functions ('def') ?too much php2008-11-18T07:19:32Z2008-11-18T07:19:32Z<p>If you are just going to assign the lambda to a variable in the local scope, you may as well use def because it is more readable and can be expanded more easily in the future:</p>
<pre><code>fun = lambda a, b: a ** b # a pointless use of lambda
map(fun, someList)
</code></pre>
<p>or</p>
<pre><code>def fun(a, b): return a ** b # more readable
map(fun, someList)
</code></pre>
http://stackoverflow.com/questions/134626/which-is-more-preferable-to-use-in-python-lambda-functions-or-nested-functions/788533#7885330Answer by Nuss for Which is more preferable to use in Python: lambda functions or nested functions ('def') ?Nuss2009-04-25T08:35:43Z2009-04-25T08:35:43Z<p>lambda is usefull for generating new functions:</p>
<pre><code>def somefunc(x): return lambda y: x+y
f = somefunc(10)
f(2)
>>> 12
f(4)
>>> 14
</code></pre>
http://stackoverflow.com/questions/134626/which-is-more-preferable-to-use-in-python-lambda-functions-or-nested-functions/1004492#10044921Answer by TokenMacGuy for Which is more preferable to use in Python: lambda functions or nested functions ('def') ?TokenMacGuy2009-06-17T00:02:38Z2009-06-17T00:02:38Z<p>An important limitation of lambdas is that they cannot contain anything besides an expression. It's nearly impossible for a lambda expression to produce anything besides trivial side effects, since it cannot have anywhere near as rich a body as a <code>def</code>'ed function.</p>
<p>That being said, Lua influenced my programming style toward the extensive use of anonymous functions, and I litter my code with them. On top of that, I tend to think about map/reduce as abstract operators in ways I don't consider list comprehensions or generators, almost as If I'm deferring an implementation decision explicitly by using those operators. </p>