I have two integers x
and y
that are equal to each other. Whenever I change x
I want the change to also be reflected in y
. How can I do that with Python?
I think this can be achieved somehow by pointing both variables to the 'memory location' where the value is stored.