Build a Movie Ticket Booking Calculator - Step 8

Tell us what’s happening:

I did whatever was instructed on the steps but it didn’t pass the test

Your code so far


# User Editable Region

base_price = 15
age = 21
seat_type = 'Gold'
show_time = 'Evening'
is_member = True
is_weekend = False

discount = 0

if age > 17:
    print('User is eligible to book a ticket')

if age >= 21:
    print("User qualifies for Evening show")
if is_member==True:
    discount+=3
    print("User qualifies for membership discount")
else:
    print('User is not 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/139.0.0.0 Safari/537.36

Challenge Information:

Build a Movie Ticket Booking Calculator - Step 8

are you sure you are adding the new if in the right palce? isn’t the highlighted region below discount = 0 (which is the last line of code)?

your code does not see in the right order anymore

maybe you want to use the Reset button image to restore the starting code of this step, and then follow carefully the instructions

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