Advertisement
bl00dt3ars

13. Ski Trip

Oct 20th, 2020
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.66 KB | None | 0 0
  1. days = int(input())
  2. room = input()
  3. rating = input()
  4. nights = days - 1
  5. price = 0
  6. tips = 0
  7. room_for_one = 18.00 * nights
  8. apartment = 25.00 * nights
  9. president_apartment = 35.00 * nights
  10.  
  11. if rating == "positive":
  12.     tips = 1.25
  13. else:
  14.     tips = 0.9
  15.  
  16. if nights < 10:
  17.     apartment *= 0.7
  18.     president_apartment *= 0.9
  19. elif 10 <= nights <= 15:
  20.     apartment *= 0.65
  21.     president_apartment *= 0.85
  22. else:
  23.     apartment *= 0.5
  24.     president_apartment *= 0.8
  25.  
  26. if room == "room for one person":
  27.     price = room_for_one * tips
  28. elif room == "apartment":
  29.     price = apartment * tips
  30. else:
  31.     price = president_apartment * tips
  32.  
  33. print(f"{price:.2f}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement