01
What a Variable Is
A variable is a labeled box that holds a value. In Python, one line can store text and another can store a number. Type both lines into your Python file and run it โ nothing prints yet, and that's correct.
name = "Elijah"
age = 15