♦ Identity Operators in Python
♣ Example5: Identity Operators in Python
Identity Operators in Python are used to check whether a one or more variables share the same memory location, that is same value is assigned to multiple variables.[email protected] |
---|
[email protected] true if both variables share the same memory-location(and also the value, ofcourse) |
is [email protected] true if both variables do not share the same memory-location(but may possibly have same value) |
Example
Input:
Output: