Build a Movie Ticket Booking Calculator - Step 9

Tell us what’s happening:

I can’t get passed this bit, I have tried everything says should have print('discount etc under my else statement, it is
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 = 3
//print(‘Discount:’, discount)
//print(‘User does not qualify for membership discount’)

You should have print('Discoun

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

# User Editable Region

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

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.4 Safari/605.1.15

Challenge Information:

Build a Movie Ticket Booking Calculator - Step 9

Hi @vickybellinger35,

Below the if...else statement, use the print() call to display a message that shows Discount: followed by the updated value of discount .

Please read again where the instructions say this line should go.

Happy coding!