A variable is a named container that stores a value — like a box with a label.
Examples:
age = 25
name = "Alex"
height = 1.78
is_student = True
Rules: letters, numbers, underscore; cannot start with number; case-sensitive.
Use type() to check:
print(type(42)) #
print(type(3.14)) #
print(type("AI")) #
print(type(True)) #
Next: operators (math & comparisons).