Use if, elif, and else to control flow.
if
elif
else
Combine multiple conditions using logical operators (and, or).
and
or
age = 18 if age >= 18: print("Adult") elif age >= 13: print("Teenager") else: print("Child")