Build a Movie Ticket Booking Calculator - Paso 8

Cuéntanos qué está pasando:

esta mal es decir yo coloco todo mi codigo bien como dice hay hasta miro en chat gpt si esta bien y si esta bien y me aparece que esta mal en esta pagina

Tu código hasta el momento

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

# User Editable Region

if is_memder:
    print("User qualifies for membership discount")
    discount = 3

# User Editable Region

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Información del Desafío:

Build a Movie Ticket Booking Calculator - Paso 8

You have a typo. Check the spelling of member.

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