Python Identity Operators:
We can use the PyCharm code editor for this example. If you do not know about it then follow this link- How to install PyCharm for Python and create a program in it. |
(1) Identity operators are used to determine whether the value of a variable is of a certain type or not. Identity operators can also be used to determine whether two variables are referring to the same object or not. There are two identity operators i.e.
Operator | Description |
---|---|
is | Result is True if x and y refer to the same object, else False |
is not | Result is True if x and y do not refer to the same object, else False |
(2) Example of is and is not operators.

Comments (No)