I need to equal the memory address of two variables... I mean If the value of the first variable changes, the second variable will also take the same value. For example :
a = 10
b = 10
# now addresses are same
a = 5
print(b) # must print 5
I want to do something like this: id(a) = id(b)