← Concepts
Variables
Naming and storing values.
A variable is a name that points at a value. Use `=` to assign. Names should describe what they hold.
Worked example
price = 99
quantity = 3
total = price * quantity
print(total)Practice
Create variables for length and width, then print the area.
Related challenges