Python - Counting2
================
count = 0
t=[1,2,3,4,5]
low=1
high=9
for num in t:
if low < num < high:
count = count + 1
print(count)