We use identity operators to compare the memory location of two objects.
Operator | Syntax | Description |
---|---|---|
is | x is y | This returns True if both variables are the same object |
is not | x is not y | This returns True if both variables are not the same object |
Example