Python Control Statements
Conditional Statements
Control statements allow programs to make decisions based on conditions.
python
age = 20
if age >= 18:
print("Adult")
else:
print("Minor")
Next Tutorial: Python Loops

