Build a Movie Ticket Booking Calculator - Step 9

Tell us what’s happening:

I have submitted the correct code, but it keeps saying "You should have print(‘Discount:’ , discount), which shows in the terminal, but it isn’t passing my code

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

print('User qualifies for membership discount')

else:

discount = 0

print('User does not qualify for membership discount')

print(‘Discount:’, discount)

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')

# User Editable Region


else:
    discount = 3
    print('User does not qualify for membership discount')

print('Discount:', discount)

# 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/147.0.0.0 Safari/537.36

Challenge Information:

Build a Movie Ticket Booking Calculator - Step 9

Welcome to the forum @peter7moe!

Were you asked to add a discount assignment in this step?

Happy coding!

I was asked to update the value of discount

where you asked to update the value of discount in this step?

consider that you have written discount=3 in both the if and the else, that means that they can both be eliminated and we could write discount=3 above the if instead of discount=0, so it seems maybe this is not what you should write

Thank you, so much. This was the solution.