What am i doing wrong it looks right

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 = True:
discount = 3
print('User qualifies for membership discount")
else:
print(“User does not qualify for membership discount”)
print('Discount: ", discount)

can you tell us what challenge are you on?

It looks like you may have changed the seed code, which will cause the tests to fail. Please click the reset button to restore the original code and try again.

image

In the future, 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.