Contact: aviboots(AT)netvision.net.il
41,577 questions
54,199 answers
573 users
a_list = [1, 4, 5, 3, 6, 2, 3, 2] i = 0 total = 0 x = 2 y = 4 while i < len(a_list): if x <= a_list[i] <= y: total += a_list[i] i += 1 print(total) ''' run: 14 '''