Build a Movie Ticket Booking Calculator - Step 9

Tell us what’s happening:

I am not able to solve this code as I have tried multiple time but it is showing me the same answer

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

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

    

# User Editable Region

    
    

    

# 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 9

Welcome to the forum @swatijatol4

There is a message in the console.

Please reset the step to restore the seed code. You changed the position of the initial discount variable.

Making changes to code which you are not asked to do may cause the tests to fail.

Happy coding