"A variable is like a labelled box. You put something inside, label it, and then use the label whenever you need what's inside. In Python: name = 'Alex' creates a box labelled name with 'Alex' inside."
name = "Alex" # string — text goes in quotes
age = 12 # integer — whole number, no quotes
height = 1.54 # float — decimal number
print("Hello,", name)
print("You are", age, "years old")