In a comment on this question, I saw a statement that recommended using
result is not None
vs
result != None
I was wondering what the difference is, and why one might be recommended over the other?
Thanks!
|
In a comment on this question, I saw a statement that recommended using
vs
I was wondering what the difference is, and why one might be recommended over the other? Thanks! |
|||||||||||
|
|
You use |
|||||||||||||||||||
|
|
First, let me go over a few terms. If you just want your question answered, scroll down to "Answering your question". DefinitionsObject identity: When you create an object, you can assign it to a variable. You can then also assign it to another variable. And another.
In this case, Object equality: When you compare two objects, you usually don't care that it refers to the exact same object in memory. With object equality, you can define your own rules for how two objects compare. When you write Rationale for equality comparisonsRationale: Two objects have the exact same data, but are not identical. (They are not the same object in memory.) Example: Strings
Note: I use unicode strings here because Python is smart enough to reuse regular strings without creating new ones in memory. Here, I have two unicode strings,
Note: Rationale: Two objects have different data, but are considered the same object if some key data is the same. Example: Most types of model data
Here, I have two Dell monitors,
Answering your questionWhen comparing to By comparing identity, this can be performed very quickly. Python checks whether the object you're referring to has the same memory address as the global None object - a very, very fast comparison of two numbers. By comparing equality, Python has to look up whether your object has an Did you not implement When comparing most other things in Python, you will be using |
|||
|
|
|
|
|||||||||||||||
|
|
Consider the following:
|
||||
|
|
>>> () is () True >>> 1 is 1 True >>> (1,) == (1,) True >>> (1,) is (1,) False >>> a = (1,) >>> b = a >>> a is b True Some objects are singletons, and thus |
|||||||||||
|