Build a Movie Ticket Booking Calculator

Continuing the discussion from Build a Movie Ticket Booking Calculator - Step 21:

Tell us what’s happening:

The task is to print , User qualifies for membership discount inside your new if statement. I have tried everything I can think of but FCC will not allow me to continue the exercise, I need pointers to complete it
This is the 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.’)
else:
print(‘User does not qualifies for membership discount.’)

Hi.

Can you please post the url of the challenge you are on.

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.

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