Lesson 2
The Basic Elements
Chapter 6: Variables
Variable assignment
As mentioned, Python variables are just labels for objects.
Therefore, you can have different variables pointing to the same object (an object can be given multiple names).
You are also free to reassign an existing variable to point to a different object (of any type) at any stage of your program.