Build a Movie Ticket Booking Calculator - Step 9

Tell us what’s happening:

It keeps telling me that "You should have --print(‘Discount:’, discount)-- below your --if…else-- statement. I have reset this multiple times, copy and pasted from the help tips and nothing lets me pass through. Help!

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
if is_member:
    discount = 3
    print('User qualifies for membership discount')

# User Editable Region

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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.3 Safari/605.1.15

Challenge Information:

Build a Movie Ticket Booking Calculator - Step 9

where you asked to add this inside the else?

“Sir, please explain how to execute the program

please create your own topic with your code to ask for help

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.