Build a Movie Ticket Booking Calculator - Step 9

Tell us what’s happening:

Hello Sir, I thought that I had my code right, but I keeps telling me to add an else clause or to add (‘Discount:’, discount). Could you help me to understand where my mistake is?

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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36

Challenge Information:

Build a Movie Ticket Booking Calculator - Step 9

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-movie-ticket-booking-calculator/6958e0ecc121b0ae3dd9c5e0.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @vival_ogamu

Did you notice the syntax error message in the console?

Carefully read what goes in the print call.

Happy coding

Tell us what’s happening:

Hello sir, now there is no syntax error but it still say that I need to add an else clause

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 is: ' + str(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/127.0.0.0 Safari/537.36

Challenge Information:

Build a Movie Ticket Booking Calculator - Step 9

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-movie-ticket-booking-calculator/6958e0ecc121b0ae3dd9c5e0.md at main · freeCodeCamp/freeCodeCamp · GitHub

Hi @vival_ogamu

Try using the print call from the hint message:

You should have print(‘Discount:’, discount) below your if…else statement.

Happy coding