Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
lst = [x ** 2 for x in range(10)] print(lst) ''' run: [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] '''