Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
lst = [1, 2, 3, 4] for i in map(lambda a: a + 1, lst): print(i) ''' run: 2 3 4 5 '''