python notes
python notes
5. What is a Variable?
Variables A variable is a named location used to store data in the memory.
x = 42
y = 42
6. What is a Constant?
A constant is a type of variable whose value cannot be changed during the
program's execution.