The Python is not
operator — consisting of two keywords is
and not
— tests if the left and right operands refer to a different object—in which case it returns True
. It returns False
if they refer to the same object. For example, the expression [1, 2, 3] is not [1, 2, 3]
returns True
because although both lists are equal, they are two different objects in memory.
The following example shows that both lists lst_1
and lst_2
are not different lst_1 != lst_2
, but when tested for negative identity lst_1 is not lst_2
, they are still different objects.
>>> lst_1 = [1, 2, 3] >>> lst_2 = [1, 2, 3] >>> lst_1 is not lst_2 True >>> lst_1 != lst_2 False
The difference between the ‘is not
‘ and ‘!=
‘ operators is that ‘is not
‘ compares the object reference of two objects whereas ‘!=
‘ compares the semantic equality of two objects.
Identity Operators
Python has two identity operators: is
and is not
. They are used to check if two values or variables reside at the same memory location, i.e., refer to the same object in memory. However, if two variables are equal, this doesn’t imply that they are identical. For example, two lists [1, 2, 3]
and [1, 2, 3]
may be different objects (not identical) but they’re equal in value.
Operator | Meaning | Example |
---|---|---|
is | Returns True if both operands refer to the same object in memory and False otherwise. | x is True |
is not | Returns False if both operands refer to the same object in memory and True otherwise. | x is not True |
Where to Go From Here?
Enough theory. Let’s get some practice!
Coders get paid six figures and more because they can solve problems more effectively using machine intelligence and automation.
To become more successful in coding, solve more real problems for real people. That’s how you polish the skills you really need in practice. After all, what’s the use of learning theory that nobody ever needs?
You build high-value coding skills by working on practical coding projects!
Do you want to stop learning with toy projects and focus on practical code projects that earn you money and solve real problems for people?
🚀 If your answer is YES!, consider becoming a Python freelance developer! It’s the best way of approaching the task of improving your Python skills—even if you are a complete beginner.
If you just want to learn about the freelancing opportunity, feel free to watch my free webinar “How to Build Your High-Income Skill Python” and learn how I grew my coding business online and how you can, too—from the comfort of your own home.