Contact: aviboots(AT)netvision.net.il
40,769 questions
53,151 answers
573 users
a_list = [1, 4, 5, 3, 6, 2, 3] i = 0 total = 0 x = 2 y = 4 while i < len(a_list): if a_list[i] < x: total += a_list[i] else: if a_list[i] > y: total += a_list[i] i += 1 print(total) ''' run: 12 '''
a_list = [1, 4, 5, 3, 6, 2, 3] i = 0 total = 0 x = 2 y = 4 while i < len(a_list): if not x <= a_list[i] <= y: total += a_list[i] i += 1 print(total) ''' run: 12 '''