59.7k views
17 votes
Find the error in the statement below

if height _variable >59;

print ("you can ride this roller coaster.")​

User YMM
by
8.0k points

1 Answer

3 votes

Since this code is in python, you have to follow python syntax.

All if statements must end with a colon not a semi colon. For instance,

if height_variable > 59; should be if height_variable > 59:

Also, the print statement should be indented into the if statement.

if height_variable > 59:

print("you can ride this roller coaster.")

User Junius L
by
7.5k points