How to sum numbers in a list only those between x and y in Python

1 Answer

0 votes
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

'''

 



answered Oct 28, 2017 by avibootz
...