THEME PARK
What a pleasant day and you want to build smth new. Well, what if you get an order to make custom software for a ticket counter.
#Theme park print("Welcome to the roller-coaster") height = int(input("What is your height in cm? ")) age = int(input("Enter your age: ")) bill = 0 if height >= 120: print("You can ride") if age >= 18: bill += 12 print("Adult tickets are 12$") elif age >= 12: bill += 7 print("Youth tickets are 7$") else: bill +=5 print("Child tickets are 5$") if input("You want photos (y/n)") == "y": bill += 3 print(f"You need to pay a total of {bill}$") else: print("Sorry you won't have any memories")
else: print("You can't ride")














