Build a Movie Ticket Booking Calculator - Step 8

Tell us what’s happening:

Site refuses to allow me to progress forward, is_member variable is not being recognised by the program, I’ve even tried copying and pasting it from the hint but nothing is working
discount = 0
if is_member == True:
discount = 3
print(‘User qualifies for membership 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


# User Editable Region

discount = 0
if is_member == True:
    discount = 3
    print('User qualifies for membership discount')

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36

Challenge Information:

Build a Movie Ticket Booking Calculator - Step 8

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

Welcome to the forum @JamiePeacockRZA,

The objective of this step was to point out that:

In Python, if conditions don’t have to compare values explicitly to True or False .

Referring to the example, how should you write your if condition?

Happy coding