Build a Movie Ticket Booking Calculator - Step 3

Tell us what’s happening:

idk man why it isnt working I am trying to complete this step for more then 10 minutes

Your code so far

base_price = 15
age = 21
seat_type = 'Gold'
show_time = 'Evening'


# User Editable Region

if age >= 17
print("User is eligible to book a ticket")

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36

Challenge Information:

Build a Movie Ticket Booking Calculator - Step 3

Indentation is important - look at the example syntax.

What symbol means greater than and what symbol do you have in your condition?

Did you figure this out by now? Indentation is missing as well a a colon. also your operator is equal or greater than when only greater than is needed.