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

Is there any difference between:

if foo is None: pass

and

if foo == None: pass

The convention that I've seen in most Python code (and the code I myself write) is the former, but I recently came across code which uses the latter. None is an instance (and the only instance, IIRC) of NoneType, so it shouldn't matter, right? Are there any circumstances in which it might?

share|improve this question

11 Answers

up vote 160 down vote accepted

is always returns True if it compares the same object instance

Whereas == is ultimately determined by the __eq__() method

i.e.


>>> class foo(object):
       def __eq__(self, other):
           return True

>>> f = foo()
>>> f == None
True
>>> f is None
False
share|improve this answer
25  
You may want to add that None is a singleton so "None is None" is always True. – e-satis Nov 23 '08 at 7:32
17  
And you may want to add that the is operator cannot be customized (overloaded by a user-defined class). – martineau Dec 17 '10 at 20:28

You may want to read this object identity and equivalence.

The statement 'is' is used for object identity, it checks if objects refer to the same instance (same address in memory).

And the '==' statement refers to equality (same value).

share|improve this answer
Hmmm, I think your link changed, unless you were interested in how to call external functions from python – Pat May 4 '12 at 20:39

(ob1 is ob2) equal to (id(ob1) == id(ob2))

share|improve this answer
5  
... but (ob is ob2) is a LOT faster. Timeit says "(a is b)" is 0.0365 usec per loop and "(id(a)==id(b))" is 0.153 usec per loop. 4.2x faster! – AKX Oct 15 '09 at 17:53
3  
the is version needs no function call, and no python-interpreter attribute lookup at all; the interpreter can immediately answer if ob1 is, in fact, ob2. – u0b34a0f6ae Nov 25 '09 at 13:34
9  
No, it does not. {} is {} is false and id({}) == id({}) can be (and is in CPython) true. See stackoverflow.com/questions/3877230 – Piotr Dobrogost Oct 14 '10 at 20:15

A word of caution:

if foo:
  # do something

Is not exactly the same as:

if x is not None:
  # do something

The former is a boolean value test and can evaluate to false in different contexts. There are a number of things that represent false in a boolean value tests for example empty containers, boolean values. None also evaluates to false in this situation but other things do too.

share|improve this answer

The reason foo is None is the preferred way is that you might be handling an object that defines its own __eq__, and that defines the object to be equal to None. So, always use foo is None if you need to see if it is infact None.

share|improve this answer

For None there shouldn't be a difference between equality (==) and identity (is). The NoneType probably returns identity for equality. Since None is the only instance you can make of NoneType (I think this is true), the two operations are the same. In the case of other types this is not always the case. For example:

list1 = [1, 2, 3]
list2 = [1, 2, 3]
if list1==list2: print "Equal"
if list1 is list2: print "Same"

This would print "Equal" since lists have a comparison operation that is not the default returning of identity.

share|improve this answer

@Jason:

I recommend using something more along the lines of

if foo:
    #foo isn't None
else:
    #foo is None

I don't like using "if foo:" unless foo truly represents a boolean value (i.e. 0 or 1). If foo is a string or an object or something else, "if foo:" may work, but it looks like a lazy shortcut to me. If you're checking to see if x is None, say "if x is None:".

share|improve this answer
Checking for empty strings/lists with "if var" is the preferred way. Boolean conversion is well defined, and it is less code that even performs better. No reason to do "if len(mylist) == 0" for example. – truppo May 28 '10 at 21:18
Wrong. Suppose foo = "". Then if foo will return false and the comment #foo is None is wrong. – blokeley Mar 16 '11 at 17:35
Note to downvoters - my answer is quoting an answer that has since been deleted and disagreeing with it. If you don't like the code in my answer, you need to upvote. :-) – Graeme Perrow Mar 16 '11 at 18:09

John Machin's conclusion that None is a singleton is a conclusion bolstered by this code.

>>> x = None
>>> y = None
>>> x == y
True
>>> x is y
True
>>> 

Since None is a singleton, x == None and x is None would have the same result. However, in my aesthetical opinion, x == None is best.

share|improve this answer
1  
I disagree with the opinion at the end of this answer. When comparing with none explicitly, it's usually intended that the object in question is exactly the None object. By comparison, one seldom sees None used in any other context except to be similar to False with other values being truthy. In those cases it is more idiomatic to do something like if x: pass – TokenMacGuy Mar 27 '11 at 22:30

There is no difference because objects that are identical will always be equal. However, PEP 8 clearly states you should use is:

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

share|improve this answer

@Graeme Perrow , @Tendayi Mawushe:

About translating the English statement if x is None to the Python code if x is None:... I did not understand why would you want to choose so, apart from having a look-and-feel of programming with English statements.

I would use instead if x == None: Python code, to check whether x is None. Borrego's and Stephen's answers explain and elaborate on the purpose of is. The fact that there's apparently no difference in these cases is not a good reason to rely on this quirk, for reasons such as implementations of Python that would not use caching of values would have broke your code, because this quirk depends on this detail. So if you are intending x is None write x == None, as you would write y is 10 as y == 10.

If still unclear please read this.

Also there could be good reasons to write x is None, but I cannot imagine any scenario that would make this useful.

The point that if uses implicit boolean conversions, with the effects mentioned, is correct, and is proper to be aware about it.

share|improve this answer
1  
-1 foo is None does NOT depend on caching of values. None is a singleton by definition; it's neither a quirk nor an implementation detail. The link you give must be a mistake; its contents are absolutely irrelevant to the is/== discussion. – John Machin May 31 '10 at 3:47

Some more details:

  1. The is clause actually checks if the two objects are at the same memory location or not. i.e whether they both point to the same memory location and have the same id.

  2. As a consequence of 1, is ensures whether, or not, the two lexically represented objects have identical attributes (attributes-of-attributes...) or not

  3. Instantiation of primitive types like bool, int, string(with some exception), NoneType having a same value will always be in the same memory location.

E.g.

>>> int(1) is int(1)
True
>>> str("abcd") is str("abcd")
True
>>> bool(1) is bool(2)
True
>>> bool(0) is bool(0)
True
>>> bool(0)
False
>>> bool(1)
True

And since NoneType can only have one instance of itself in the python's "look-up" table therefore the former and the latter are more of a programming style of the developer who wrote the code(maybe for consistency) rather then having any subtle logical reason to choose one over the other.

share|improve this answer

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.