01 / 06
Giving a value a name
Up to now you have written values straight in. From here you learn how to put a value away under a name.
That named container is called a variable. You make one by writing name = value, and that is it.
price = 150print(price)Result
150