fork download
  1. def multipliers():
  2. return [lambda x : i * x for i in range(4)]
  3.  
  4. print [m(2) for m in multipliers()]
Success #stdin #stdout 0.02s 7304KB
stdin
Standard input is empty
stdout
[6, 6, 6, 6]