I seen several examples of code like this:
if not someobj:
#do something
But I'm wondering why not do:
if someobj == None:
#do something
Is there any difference? Does one have an advantage over the other?
|
I seen several examples of code like this:
But I'm wondering why not do:
Is there any difference? Does one have an advantage over the other? |
|||||
|
|
In the first test, Python try to convert the object to a
In the second test, the object is compared for equality to
There is another test possible using the Generally, I would recommend to use the first test with non-numerical values, to use the test for equality when you want to compare objects of the same nature (two strings, two numbers, ...) and to check for identity only when using sentinel values ( To summarize, we have :
|
|||||||
|
|
These are actually both poor practices. Once upon a time, it was considered OK to casually treat None and False as similar. However, since Python 2.2 this is not the best policy. First, when you do an Before Python 2.2, there was no bool function, so it was even less clear. Second, you shouldn't really test with See PEP 8, Style Guide for Python Code.
How many singletons are there? Five: |
|||||
|
|
Because
Moreover, consider the following:
This is the "magic" behind short circuiting expressions like:
which is shorthand for:
|
|||||||
|
|
These two comparisons serve different purposes. The former checks for boolean value of something, the second checks for identity with None value. |
|||||
|
|
If you ask
the __nonzero__ method of spam gets called. From the Python manual:
If you ask
the __eq__ method of spam gets called with the argument None. For more information of the customization possibilities have a look at the Python documenation at http://www.python.org/doc/2.3.5/ref/customization.html |
|||
|
|
|
Style guide recommends to use is or is not if you are testing for None-ness
On the other hand if you are testing for more than None-ness, you should use the boolean operator. |
|||
|
|
|
For one the first example is shorter and looks nicer. As per the other posts what you choose also depends on what you really want to do with the comparison. |
|||
|
|
|
The answer is "it depends". I use the first example if I consider 0, "", [] and False (list not exhaustive) to be equivalent to None in this context. |
|||
|
|
|
Personally, I chose a consistent approach across languages: I do Of course, people will disagree. Some go farther, I see |
|||
|
|