Why results of map() and list comprehension are different? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:41:37Z http://stackoverflow.com/feeds/question/139819 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/139819/why-results-of-map-and-list-comprehension-are-different 5 Why results of map() and list comprehension are different? J.F. Sebastian 2008-09-26T14:19:48Z 2008-10-25T06:28:58Z <p>The following test fails:</p> <pre><code>#!/usr/bin/env python def f(*args): """ &gt;&gt;&gt; t = 1, -1 &gt;&gt;&gt; f(*map(lambda i: lambda: i, t)) [1, -1] &gt;&gt;&gt; f(*(lambda: i for i in t)) # -&gt; [-1, -1] [1, -1] &gt;&gt;&gt; f(*[lambda: i for i in t]) # -&gt; [-1, -1] [1, -1] """ alist = [a() for a in args] print(alist) if __name__ == '__main__': import doctest; doctest.testmod() </code></pre> <p>In other words:</p> <pre><code>&gt;&gt;&gt; t = 1, -1 &gt;&gt;&gt; args = [] &gt;&gt;&gt; for i in t: ... args.append(lambda: i) ... &gt;&gt;&gt; map(lambda a: a(), args) [-1, -1] &gt;&gt;&gt; args = [] &gt;&gt;&gt; for i in t: ... args.append((lambda i: lambda: i)(i)) ... &gt;&gt;&gt; map(lambda a: a(), args) [1, -1] &gt;&gt;&gt; args = [] &gt;&gt;&gt; for i in t: ... args.append(lambda i=i: i) ... &gt;&gt;&gt; map(lambda a: a(), args) [1, -1] </code></pre> http://stackoverflow.com/questions/139819/why-results-of-map-and-list-comprehension-are-different/139880#139880 4 Answer by Brian for Why results of map() and list comprehension are different? Brian 2008-09-26T14:28:40Z 2008-09-26T14:28:40Z <p>The lambda captures variables, not values, hence the code</p> <pre><code>lambda : i </code></pre> <p>will always return the value i is <strong>currently</strong> bound to in the closure. By the time it gets called, this value has been set to -1.</p> <p>To get what you want, you'll need to capture the actual binding at the time the lambda is created, by:</p> <pre><code>&gt;&gt;&gt; f(*(lambda i=i: i for i in t)) # -&gt; [-1, -1] [1, -1] &gt;&gt;&gt; f(*[lambda i=i: i for i in t]) # -&gt; [-1, -1] [1, -1] </code></pre> http://stackoverflow.com/questions/139819/why-results-of-map-and-list-comprehension-are-different/139899#139899 7 Answer by Torsten Marek for Why results of map() and list comprehension are different? Torsten Marek 2008-09-26T14:31:47Z 2008-09-26T18:41:39Z <p>They are different, because the value of <code>i</code> in both the generator expression and the list comp are evaluated lazily, i.e. when the anonymous functions are invoked in <code>f</code>.<br /> By that time, <code>i</code> is bound to the last value if <code>t</code>, which is -1.</p> <p>So basically, this is what the list comprehension does (likewise for the genexp):</p> <pre><code>x = [] i = 1 # 1. from t x.append(lambda: i) i = -1 # 2. from t x.append(lambda: i) </code></pre> <p>Now the lambdas carry around a closure that references <code>i</code>, but <code>i</code> is bound to -1 in both cases, because that is the last value it was assigned to.</p> <p>If you want to make sure that the lambda receives the current value of <code>i</code>, do</p> <pre><code>f(*[lambda u=i: u for i in t]) </code></pre> <p>This way, you force the evaluation of <code>i</code> at the time the closure is created.</p> <p><strong>Edit</strong>: There is one difference between generator expressions and list comprehensions: the latter leak the loop variable into the surrounding scope.</p> http://stackoverflow.com/questions/139819/why-results-of-map-and-list-comprehension-are-different/141113#141113 1 Answer by J.F. Sebastian for Why results of map() and list comprehension are different? J.F. Sebastian 2008-09-26T18:24:31Z 2008-09-26T18:24:31Z <p>Expression <code>f = lambda: i</code> is equivalent to:</p> <pre><code>def f(): return i </code></pre> <p>Expression <code>g = lambda i=i: i</code> is equivalent to:</p> <pre><code>def g(i=i): return i </code></pre> <p><code>i</code> is a <a href="http://docs.python.org/ref/naming.html" rel="nofollow">free variable</a> in the first case and it is bound to the function parameter in the second case i.e., it is a local variable in that case. Values for default parameters are evaluated at the time of function definition. </p> <p>Generator expression is the nearest enclosing scope (where <code>i</code> is defined) for <code>i</code> name in the <code>lambda</code> expression, therefore <code>i</code> is resolved in that block:</p> <pre><code>f(*(lambda: i for i in (1, -1)) # -&gt; [-1, -1] </code></pre> <p><code>i</code> is a local variable of the <code>lambda i: ...</code> block, therefore the object it refers to is defined in that block:</p> <pre><code>f(*map(lambda i: lambda: i, (1,-1))) # -&gt; [1, -1] </code></pre>