Build a Movie Ticket Booking Calculator - Step 5

Tell us what’s happening:

Even after writing the correct code and intendetion it’s showing error

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')

# User Editable Region

if:
print("User is eligible for Evening shows")
else:
print("User is not eligible for Evening shows")




# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a Movie Ticket Booking Calculator - Step 5

GitHub Link: https://github.com/freeCodeCamp/freeCodeCamp/blob/main/curriculum/challenges/english/blocks/workshop-movie-ticket-booking-calculator/696099abb6acc539b27055a1.md

if must have a condition, and the content of the if must be indented, like you wrote in previois steps

also you may already have the if, and just need to add the else