i need to calculate how much numbers form string got value higher or equal to 25 and lower or equal to 50
numbers = [25, 24, 26, 45, 25, 23, 50, 51]
# 'count' should be 5
count = 0
# I need to filter all numbers and only numbers what are higher than 25 can stay
numbers = [25, 24, 26, 45, 25, 23, 50, 51]
# 'filtered' should be equal to [26, 45, 50, 51]
filtered = []