Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Out of these not None tests.

if val != None:

if not (val is None):

if val is not None:

Which is preferable, and why?

share|improve this question
2  
See [ Is there any difference between “foo is None” and “foo == None”? ](stackoverflow.com/questions/26595/…) for the difference between is and ==. [ Python if x is not None or if not x is None? ](stackoverflow.com/questions/2710940/…) shows that the last two are equivalent. – Matthew Flaschen Oct 19 '10 at 3:30

3 Answers

up vote 113 down vote accepted
if val is not None:
    # ...

is the Pythonic idiom for testing that a variable is not set to None. This idiom has particular uses in the case of declaring keyword functions with default parameters. is tests identity in Python. Because there is one and only one instance of None present in a running Python script/program, is is the optimal test for this. As Johnsyweb points out, this is discussed in PEP 8 under "Programming Recommendations".

As for why this is preferred to

if not (val is None):
    # ...

this is simply part of the Zen of Python: "Readability counts." Good Python is often close to good pseudocode.

share|improve this answer
6  
also, "is not" has special semeantics created for this purpose (it's not a logical consequence of how expressions are constructed; "1 is (not None)" and "1 is not None" have two different outcomes. – Ivo van der Wijk Mar 26 '12 at 11:03
1  
+1: I liked this reference - "Good Python is often close to good pseudocode" – legesh Mar 29 '12 at 8:38

From, Programming Recommendations, PEP 8:

Comparisons to singletons like None should always be done with 'is' or 'is not', never the equality operators.

Also, beware of writing "if x" when you really mean "if x is not None" -- e.g. when testing whether a variable or argument that defaults to None was set to some other value. The other value might have a type (such as a container) that could be false in a boolean context!

PEP 8 is essential reading for any Python programmer.

share|improve this answer

Either of the latter two, since val could potentially be of a type that defines __eq__() to return true when passed None.

share|improve this answer
3  
That's rather dastardly __eq__() behavior, and something I hadn't considered. Good answer for catching a corner case. – gotgenes Oct 19 '10 at 3:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.