rollercoaster.py 572 B

123456789101112131415161718192021222324252627
  1. print('Wellcome to Rollercoaster bill calculator')
  2. height = int(input('Inter your height in cm: '))
  3. if height > 120:
  4. print('You can ride')
  5. bill = 0
  6. age = int(input('Inter your age: '))
  7. if age < 12:
  8. bill += 5
  9. elif age < 18:
  10. bill += 7
  11. elif age >= 18:
  12. bill += 12
  13. if age >= 45 and age <= 55:
  14. bill = 0
  15. else:
  16. photo = input('Are you want photos (Y or N) ')
  17. if photo == "Y":
  18. bill += 3
  19. print(f'Your bill is ${bill}')
  20. else:
  21. print('You can\'t ride. You are short')