Advertisement
12311k

Untitled

Mar 10th, 2020
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. may_2018 = [20, 27, 23, 18, 24, 16, 20, 24, 18, 15, 19, 25, 24, 26, 19, 24, 25, 21, 17, 11, 20, 21, 22, 23, 18, 20, 23, 18, 22, 23, 11]
  2. may_2017 = [24, 26, 15, 10, 15, 19, 10, 1, 4, 7, 7, 7, 12, 14, 17, 8, 9, 19, 21, 22, 11, 15, 19, 23, 15, 21, 16, 13, 25, 17, 19]
  3.  
  4.  
  5. def comfort_count(temperatures):
  6. count = 0
  7. for temp in temperatures:
  8. if 22 <= temp <= 26:
  9. count += 1
  10. return count
  11.  
  12.  
  13. print(comfort_count(may_2017))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement