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.’)
