Tell us what’s happening:
Even after writing the correct code and intendetion it’s showing error
Your code so far
base_price = 15
age = 21
seat_type = 'Gold'
show_time = 'Evening'
if age > 17:
print('User is eligible to book a ticket')
if age >= 21:
print('User is eligible for Evening shows')
# User Editable Region
if:
print("User is eligible for Evening shows")
else:
print("User is not eligible for Evening shows")
# User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Mobile Safari/537.36
Challenge Information:
Build a Movie Ticket Booking Calculator - Step 5