vote up 17 vote down star
2

My Google-fu has failed me.

In Python, are these:

n = 5
# Test one.
if n == 5:
    print 'Yay!'

# Test two.
if n is 5:
    print 'Yay!'

two tests for equality equivalent (ha!)? Does this hold true for objects where you would be comparing instances (a list say)?

Okay, so this kind of answers my question:

l = list()
l.append(1)
if l == [1]:
    print 'Yay!'
# Holds true, but...

if l is [1]:
    print 'Yay!'
# Doesn't.

So == tests value where is tests to see if they are the same object?

flag

This is another example of a question where I thought I knew the answer and it was completely obvious, and then it turns out I was wrong! Great question. I learned something new. – Joshua Carmody Sep 25 '08 at 17:23

7 Answers

vote up 41 vote down check

is will return True if two variables point to the same object, == if the objects referred to by the variables are equal.

>>> a = [1, 2, 3]
>>> b = a
>>> b is a 
True
>>> b == a
True
>>> b = a[:]
>>> b is a
False
>>> b == a
True

In your case, the second test only works because Python caches small integer objects, which is an implementation detail. For larger integers, this does not work:

>>> 1000 is 10**3
False
>>> 1000 == 10**3
True

The same holds true for string literals:

>>> "a" is "a"
True
>>> "aa" is "a" * 2
True
>>> x = "a"
>>> "aa" is x * 2
False
>>> "aa" is intern(x*2)
True

Please see this question as well.

link|flag
vote up 6 vote down

== determines if the values are equivalent, while "is" determines if they are the exact same object.

link|flag
vote up 3 vote down

http://docs.python.org/lib/comparisons.html

is tests for identity == tests for equality

Each (small) integer value is mapped to a single value, so every 3 is identical and equal. This is an implementation detail, not part of the language spec though

link|flag
vote up 4 vote down

Your answer is correct. The is operator compares the identity of two objects. The == operator compares the values of two objects.

An object's identity never changes once it has been created; you may think of it as the object's address in memory.

You can control comparison behaviour of object values by defining a __cmp__ method or a rich comparison method like __eq__.

link|flag
vote up 2 vote down

http://drj11.wordpress.com/2007/06/11/python-perils-of-«x-is-1»/

link|flag
vote up 3 vote down

They are completely different. is checks for object identity, while == checks for equality (a notion that depends on the two operands' types).

It is only a lucky coincidence that "is" seems to work correctly with small integers (e.g. 5 == 4+1). That is because CPython optimizes the storage of integers in the range (-5 to 256) by making them singletons: http://www.python.org/doc/2.5/api/intObjects.html#l2h-381

link|flag
vote up 5 vote down

Note that this is why if foo is None: is the preferred null comparison for python. All null objects are really pointers to the same value, which python sets aside to mean "None"

if x is True: and if x is False: also work in a similar manner. False and True are two special objects, all true boolean values are True and all false boolean values are False

link|flag

Your Answer

Get an OpenID
or

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