Build a Movie Ticket Booking Calculator - Step 9

Tell us what’s happening:

is_member = True
is_weekend = False
discount = 0
if is_member:
discount = 3
print(‘User does qualify for membership discount’)
else:
print(‘User does not qualify for membership discount’)
print(‘Discount:’,discount)

Problem says to add print(‘Discount:’,discount) at the end of if…else which I believe I already did, not sure if I’m just dumb or what

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 does qualify 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 (iPad; CPU OS 26_1_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/144.0.7559.95 Mobile/15E148 Safari/604.1

Challenge Information:

Build a Movie Ticket Booking Calculator - Step 9

you changed this, please reset the step and try again without changing this sentence

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