I finally figured out what happens to previous data when a variable changes value
whenever you reassign a variable, the old value doesn't get erased by the new one; the variable simply switches to refer to the new value. The effect is like moving a sticky note from one object to another.a = 10 a = 12when you do something like th...





