Tell us what’s happening:
Step 4- Ticket Booking Calculator
if age >= 12:
print(‘User is eligible to book a ticket’)
if age >= 21:
print(‘User is eligible for Evening shows.’)
What is the issue here?
Your code so far
base_price = 15
age = 21
seat_type = 'Gold'
show_time = 'Evening'
# User Editable Region
if age >= 12:
print('User is eligible to book a ticket')
elif age >= 21:
print('User is eligible for Evening shows.')
# User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36
Challenge Information:
Build a Movie Ticket Booking Calculator - Step 4