I was wondering if it was possible to link two variables/objects to the same value. not necessarily assign one variable the value of another variable, but link them so if you change the data of one, then you also change the data of the other.
Like so:
x = 4
y = x
y = 1
print x => 1
Like so:
x = 4
y = x
y = 1
print x => 1