>>> x = 3
>>> y = x
>>> y = 2
>>>
Variables in Python behave differently than those in C or C++
x
y
3
2