Variables in Python
In Python, a variable is a case-sensitive name that can hold a value. A variable can hold all kinds of values such as numbers, strings, etc. Below is an example of a variable storing a number.
1>>> price = 200
2>>> print(price)
3200
4The above code creates a variable called and assigns the integer value to it. We can ask Python to tell us what is stored in the variable using the statement and it will return the number .
