Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'defaults': 0.05; 'needed,': 0.05; '*not*': 0.07; 'function,': 0.07; 'objects,': 0.07; 'parameter': 0.07; 'subject:skip:c 10': 0.07; 'variable,': 0.07; 'created,': 0.09; 'fetch': 0.09; 'newly': 0.09; 'received :mail-qc0-f174.google.com': 0.09; 'variables,': 0.09; 'def': 0.10; 'value.': 0.15; '[2,': 0.16; 'created.': 0.16; 'funcs': 0.16; 'lambda': 0.16; 'creates': 0.18; 'variable': 0.20; 'regardless': 0.21; 'precise': 0.22; 'stick': 0.22; 'cheers,': 0.23; 'needed.': 0.23; 'this:': 0.23; 'header:In-Reply-To:1': 0.25; 'message- id:@mail.gmail.com': 0.27; "doesn't": 0.28; 'subject:list': 0.28; 'environment': 0.29; 'once,': 0.29; 'case,': 0.29; "i'm": 0.29; 'daniel': 0.30; 'function': 0.30; 'point': 0.31; 'not.': 0.32; 'print': 0.32; 'asked': 0.33; 'environment,': 0.33; 'instead,': 0.33; 'problem': 0.33; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'wrong': 0.34; 'list': 0.35; 'from:addr:googlemail.com': 0.35; 'sequence': 0.35; 'stores': 0.35; 'doing': 0.35; 'received:209.85': 0.35; 'there': 0.35; 'created': 0.36; 'but': 0.36; 'should': 0.36; 'thank': 0.36; 'enough': 0.36; 'two': 0.37; 'received:209': 0.37; 'received:209.85.216': 0.37; 'data': 0.37; 'subject:: ': 0.38; 'store': 0.38; 'object': 0.38; 'sure': 0.38; 'to:addr:python.org': 0.39; 'called': 0.39; 'little': 0.39; 'header:Received:5': 0.40; 'easy': 0.60; 'most': 0.61; 'solve': 0.62; 'different': 0.63; 'surprise': 0.65; 'obvious': 0.71; 'down!': 0.84; 'to:name:python': 0.84; 'subject:funny': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=V4wOV06uJgc7oeV1RGSTDxb/mYSPyOlqZET5COFoyq0=; b=Tr1A7riFfwx77gu2njCOa3Gl/vEAPmMim3hc3TFVVBLVIj089fNFvZo2tL/thfQ3bk L4YRP6cFXCIaiBAJ7cewxUDskwPBRTif1/Tki2KeEwSSQI3hLdP0FTS7y5m11g7pJidZ ux1pTrnupfUvsDEkVRiJLTJrhlNAKXmP16aKaOYiR42YaVAC4B+FfWZ8p/N1SKcaa8H0 KTsLr5DExLEkLiQdjq7F0aQqPEboClN20UIjFFkd9gpxhP9UeDI6KWM4oc34VSFQit8/ YM0kRTnzJ+o2MzPo6lJhuRJlVTtoAY6t69bFwkeuli1qAl67+6POCZMgv9LhuIPL8hWT 1LDw== MIME-Version: 1.0 In-Reply-To: <4ffe1096$0$29965$c3e8da3$5496439d@news.astraweb.com> References: <4ffe1096$0$29965$c3e8da3$5496439d@news.astraweb.com> Date: Thu, 12 Jul 2012 04:54:32 +0200 Subject: Re: lambda in list comprehension acting funny From: Daniel Fetchinson To: Python Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 72 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1342061675 news.xs4all.nl 6899 [2001:888:2000:d::a6]:50963 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:25189 >> You should not be using lambda in this case >> .for x in [2, 3]: >> . funcs = [x**ctr for ctr in range( 5 )] >> . for p in range(5): >> . print x, funcs[p] >> . print > > If you change the requirements, it's always easy to solve problems. But > it is the wrong problem that you have solved. > > The problem we have been asked to solve is to create a sequence of > function objects, so that they can be called later, when needed, *not* to > pre-calculate the results. > > In this case, the most obvious solution is to store a local variable in > each function object with the value you want. > > funcs = [(lambda x, i=i: x**i) for i in range(5)] > > creates a list of five functions: > > lambda x, i=0: x**i > lambda x, i=1: x**i > lambda x, i=2: x**i > and so on. > > In this case, each function has two local variables, x and i, with i > having a default value. The function parameter i is bound to the value of > i when the function was created. > > Because parameter defaults are calculated once, when the function is > created, this causes the value of i to stick to the newly created > function, and we get the result we need. > > What happens if you don't use a parameter with a default value? > > funcs = [(lambda x: x**i) for i in range(5)] > > In this case, each function body contains one local variable, x, and one > non-local or global variable, i. > > Because i is a non-local, the function doesn't store a value for it. > Instead, the function stores a lump of data pointing to just enough of > the environment to fetch the current value of the non-local i when > needed. Since all five functions are in the same environment, they all > see the same value of i when you call them, regardless of what the value > of i was when they were created. > > This is little different from doing this: > > i = 1 > def f1(x): return x**i > > i = 2 > def f2(x): return x**i > > i = 3 > def f3(x): return x**i > > Is there any surprise that all three functions return the same value? > They all point to the same global variable i. I'm not sure what it is > about lambda that fools people into thinking that it is different (I've > even been fooled myself!) but it is not. Thank you Steve! Precise and clear, as always! Cheers, Daniel -- Psss, psss, put it down! - http://www.cafepress.com/putitdown