Tell us what’s happening:
I have the right code and even have the right output, but it still shows ‘You should have print(‘Discount:’, discount) below your if…else statement.’ What do I do?
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
discount = 0
if is_member:
discount = 3
# User Editable Region
print('User qualifies for membership discount')
else:
print('User does not qualify for membership discount')
print('Discount:', discount)
# User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36
Challenge Information:
Build a Movie Ticket Booking Calculator - Step 9