Build a Movie Ticket Booking Calculator - Step 4

Tell us what’s happening:

I have written my code correctly but it still says I should print “User is eligible” inside my new if statement. I believe I’ve done it correctly?

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')


# User Editable Region

if age >= 21:
    print("User is eligible for Evening Shows")

# 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/144.0.0.0 Safari/537.36

Challenge Information:

Build a Movie Ticket Booking Calculator - Step 4

Welcome to the forum @watts.chris.13 !

Your message is slightly different than what is asked. Please check the capitalization.

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.