up vote 2 down vote favorite
1
share [g+] share [fb]

Why does this attempt at creating a list of curried functions not work?

def p(x, num):
    print x, num

def test():
    a = []
    for i in range(10):
        a.append(lambda x: p (i, x))
    return a

>>> myList = test()
>>> test[0]('test')
9 test
>>> test[5]('test')
9 test
>>> test[9]('test')
9 test

What's going on here?

A function that actually does what I expect the above function to do is:

import functools
def test2():
    a = []
    for i in range (10):
        a.append(functools.partial(p, i))
    return a


>>> a[0]('test')
0 test
>>> a[5]('test')
5 test
>>> a[9]('test')
9 test
link|improve this question
Since you have a solution that uses functools.partial, what is the question? – S.Lott May 8 '09 at 20:09
2  
The question is, why doesn't the first method work? – David May 8 '09 at 20:21
feedback

3 Answers

up vote 10 down vote accepted

In Python, variables created in loops and branches aren't scoped. All of the functions you're creating with lambda have a reference to the same i variable, which is set to 9 on the last iteration of the loop.

The solution is to create a function which returns a function, thus scoping the iterator variable. This is why the functools.partial() approach works. For example:

def test():
    def makefunc(i):
        return lambda x: p(i, x)
    a = []
    for i in range(10):
        a.append(makefunc(i))
    return a
link|improve this answer
Got it. Thanks very much! – David May 8 '09 at 20:24
feedback

I asked a similar question, and got two answers. One basically the same as the accepted answer here, and the other which is less clear but slightly more succint.

http://stackoverflow.com/questions/728356/dynamically-creating-a-menu-in-tkinter-lambda-expressions

link|improve this answer
Which includes (and I finally understand now) the lambda x=x : ... hack. – Andrej Panjkov May 21 '09 at 2:06
feedback

Well you can also bind the i to an outer lambda for the lazy.

def p(x, num):
    print x, num

def test():
    a = []
    for i in range(10):
        a.append((lambda i :lambda x: p (i, x))(i))
    return a
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.