Learn to code with step-by-step lessons. A place for students to work through programming fundamentals and build skills.
One possible program:
age = int(input("Visitor age: "))
if age < 13:
print("Child ticket: $8")
elif age >= 65:
print("Senior ticket: $10")
else:
print("Adult ticket: $15")