age = 14
if age >= 13:
print("Teen account")Line-by-line explanation
- The first line stores the age.
- The
ifline checks whether age is at least 13. - The colon
:begins the controlled block. - Four spaces indent the print line, showing it belongs to the if statement.