How does Python handles variable references/aliases? Example: a = 1 b = (REF)a b = 2 print a In this case, since "b" is just a reference to "a", changes to "b" automatically change "a". Does python have this ability?