Contact: aviboots(AT)netvision.net.il
41,443 questions
53,990 answers
573 users
lst = [1, 2, 3, 4, 5] squares = [n**2 for n in lst] print(squares) ''' run: [1, 4, 9, 16, 25] '''