Build a Movie Ticket Booking Calculator - Step 9

Tell us what’s happening:

I’ve been stuck on step 9 for two weeks, code is:
is_member = True
is_member = False

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

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:
    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/148.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 @schabzin_18,

Please read again where the instructions say you should print discount:

Below the if...else statement, use the print() call to display a message that shows Discount:

Happy coding!

Trust me,I’ve done all that. What I typed/coded was on my phone. On the actual code, which is on my laptop,everything is as required/asked

Really? It looks to me like you are trying to print the discount inside the else statement, not below the if/else.

else:

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

       print('Discount:', discount)

can you please format? that print looks to be inside the else, is it there? if it’s there it’s wrong, if it’s not we can’t see it because of the formatting

that does not look to be below the if...else

Now, I’m really confused. Maybe I don’t understand how this works. Refer to the terminal on both pics

please read again the instructions, you are asked in one part to write the else with a print inside

and in the last paragraph to add a print below the else

@ILM.Thank you, thank you.