Build a Movie Ticket Booking Calculator - Step 9

Tell us what’s happening:

No matter what i do it says You should have print(‘Discount:’, discount) below your if…else statement. I had 3 other people check, including someone who teaches python at a college. They all said there is no error.

I even asked both chatgpt and gemini to look at it and both said it was correct.

I have now tried:

  1. completing it myself
  2. having someone else who teaches Python complete it
  3. copying and pasting from both AIs

No matter what it still gives the error and I can’t move forward

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


# User Editable Region

is_member = True
is_weekend = False
discount = 0

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

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

Challenge Information:

Build a Movie Ticket Booking Calculator - Step 9

Welcome to the forum @cantaloupe9

You are not asked to reassign discount in the else statement.

Happy coding