Build a Movie Ticket Booking Calculator - Step 3

Tell us what’s happening:

hey some one why it is giving me error?
i have tried changing thing and still give error

Your code so far

base_price = 15
age = 21
seat_type = 'Gold'
show_time = 'Evening'


# User Editable Region

if age >= 17:

# 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/143.0.0.0 Safari/537.36 OPR/127.0.0.0

Challenge Information:

Build a Movie Ticket Booking Calculator - Step 3

Welcome to the forum @mua.pro15 :waving_hand: ,

It looks like your if statement is incomplete. In Python, an if statement must contain an indented block of code. Please review the instructions for this step and add the required print() statement inside the if block.

Also make sure the code inside the if statement is properly indented.

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