Closures and Loops in Python

Question:

Suppose I have the following code

callbacks = []
for i in range(10):
    callbacks.append(lambda x: i)

all functions in callbacks will return the final value of i. How can I create callbacks that return the current value for i at creation time?

Asked By: duckworthd

||

Answers:

for i in range(10):
  callbacks.append(lambda x = i : x)
Answered By: gefei
In [113]: callbacks=[]

In [114]: for i in range(10):
    callbacks.append(lambda x=i:x**2)
   .....:     
   .....:     

In [117]: callbacks[0]()
Out[117]: 0

In [118]: callbacks[1]()
Out[118]: 1

In [119]: callbacks[2]()
Out[119]: 4

In [120]: callbacks[4]()
Out[120]: 16
Answered By: Ashwini Chaudhary
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.