Build a Movie Ticket Booking Calculator - Step 10

Tell us what’s happening:

Am being asked to ensure my third if statement under step 10 is correctly matched with the output required of which i have done my code snippet if is_member and age >= 21 the prompt is asking me to ensure my if has the same of which it does any way out please?

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')
else:
    print('User is not eligible for Evening shows')

is_member = True
is_weekend = False

discount = 0

# User Editable Region

if is_member:

# User Editable Region

    discount = 3
    print('User qualifies for membership discount')
else:
    print('User does not qualify for membership discount')
print('Discount:', discount)

if is_member and age >= 21:
    print('User qualifies for membership discount')

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 10

Welcome to the forum @Oscars

Here is a comparison of the original code and your code.

The code in blue is the original code, the code in red is your code.
The code in magenta is the overlap.

You are asked to update the if condition, not create a new one.

Happy coding