Advertisement
bl00dt3ars

05. How Much Coffee Do You (Hristo Dzhevizov)

May 28th, 2021
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. little_events = "coding,dog,cat,movie"
  2. big_events = little_events.upper()
  3.  
  4. input_command = input()
  5. coffee_counter = 0
  6.  
  7. while not input_command == "END":
  8.     if input_command in little_events:
  9.         coffee_counter += 1
  10.     elif input_command in big_events:
  11.         coffee_counter += 2
  12.     if coffee_counter > 5:
  13.         print("You need extra sleep")
  14.         break
  15.  
  16.     input_command = input()
  17.  
  18. else:
  19.     print(coffee_counter)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement