def testFun(): temp = [lambda x: i * x for i in range(4)]
return temp
for everyLambda in testFun(): print(everyLambda(2))