Very quick question.
How to check whether two variables reference the same object?
x = ['a', 'b', 'c']
y = x # x and y reference the same object
z = ['a', 'b', 'c'] # x and z reference different objects
Thanks.
|
Very quick question. How to check whether two variables reference the same object?
Thanks. |
||||
|
|
|
Thats what |
|||
|
|