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?
|
3
|
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 :
|
|||
|
|
|
Because None is not the only thing that is considered false.
False, 0, (), [], {} and "" are all different from None, so your two code snippets are not equivalent. Moreover, consider the following:
"if object:" is not an equality check. 0, (), [], None, {}, etc. are all different from each other, but they all evaluate to False. This is the "magic" behind short circuiting expressions like:
which is shorthand for:
|
||||||
|
|
|
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: |
||
|
|
|
These two comparisons serve different purposes. The former checks for boolean value of something, the second checks for identity with None value. |
||
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|
|
|
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 |
||
|
|
|
|
You compare a test for false value to an equality with None. Is it possible that you consider None (instead of False) to be the "absolute false value" in Python? I ask this question because it seems you are confused and need to clarify that. Comparing to None ( |
||||
|