vote up 6 vote down star
3

I've got a python program where two variables are set to the value 'public'. In a conditional expression I have the comparison var1 is var2 which fails, but if I change it to var1 == var1 it returns True.

now if I open my python interpreter and do the same "is" comparison it succeeds

>>> s1 = 'public'
>>> s2 = 'public'
>>> s2 is s1
True

What am I missing here?

flag

25% accept rate
7  
I don't know anything about Python, but is it possible that one is comparing values while the other is comparing objects? – Cory Larson Oct 1 at 15:45
1  
see: stackoverflow.com/questions/1392433/… – Nick D Oct 1 at 15:50
3  
@Cory, that's some good language design when things are obvious like this from the first glance, isn't it? – Pavel Minaev Oct 1 at 16:10
good pointer to other question, did not find that when I was searching about earlier today – jottos Oct 1 at 16:59
1  
@Pavel Minaev: or it could be that having multiple equality operators with different semantics is a common feature of languages that often causes problems for people who don't understand the language well. – Amuck Oct 1 at 17:09

9 Answers

vote up 27 vote down check

is is identity testing, == is equality testing. what happens in your code would be emulated in the interpreter like this:

>>> a = 'pub'
>>> b = ''.join(['p', 'u', 'b'])
>>> a == b
True
>>> a is b
False

so, no wonder they're not the same, right?

In other words: is is the id(a) == id(b)

link|flag
1  
ahh same as eq? vs equal? in scheme, got it. – jottos Oct 1 at 17:00
There's a lot of equality predicates in Common Lisp, besides the basic hierarchy of eq, eql, equal, and equalp (the longer the name there, the more things will be found equal). – David Thornley Oct 1 at 19:43
1  
To the serial downvote: please feck off. – SilentGhost Oct 20 at 10:24
vote up 1 vote down

This is a side note, but in idiomatic python, you will often see things like:

if x is None: 
    # some clauses

This is safe, because there is guaranteed to be one instance of the Null Object (i.e., None).

link|flag
SilentGhost, thank you for editing me! Typo on my part! – Gregg Lind Oct 2 at 14:23
vote up -1 vote down

If you're not sure what you're doing, use the '=='. If you have a little more knowledge about it you can use 'is' for known objects like 'None'.

Otherwise you'll end up wondering why things doesn't work and why this happens:

>>> a = 1
>>> b = 1
>>> b is a
True
>>> a = 6000
>>> b = 6000
>>> b is a
False

I'm not even sure if some things are guaranteed to stay the same between different python versions/implementations.

link|flag
Not an answer. The difference between two language constructs is not a question of how much knowledge you have! – jprete Oct 2 at 16:18
vote up 2 vote down

One last thing to note, you may use the intern function to ensure that you're getting a reference to the same string:

>>> a = intern('a')
>>> a2 = intern('a')
>>> a is a2
True

As pointed out above, you should probably not be doing is to determine equality on strings. But this may be helpful to know if you have some kind of weird requirement to use is.

Note that the intern function got moved from being a built in function to being in the module sys for Python 3.

link|flag
1  
intern was moved to sys.intern in py3k, btw. – SilentGhost Oct 1 at 16:06
Heh... you left that comment right as I was editing it in. :-) – Jason Baker Oct 1 at 16:07
vote up 8 vote down

SilentGhost and others are correct here. is is used for identity comparison, while == is used for equality comparison.

The reason this works interactively is that (most) string literals are interned by default. From Wikipedia:

Interned strings speed up string comparisons, which are sometimes a performance bottleneck in applications (such as compilers and dynamic programming language runtimes) that rely heavily on hash tables with string keys. Without interning, checking that two different strings are equal involves examining every character of both strings. This is slow for several reasons: it is inherently O(n) in the length of the strings; it typically requires reads from several regions of memory, which take time; and the reads fills up the processor cache, meaning there is less cache available for other needs. With interned strings, a simple object identity test suffices after the original intern operation; this is typically implemented as a pointer equality test, normally just a single machine instruction with no memory reference at all.

So, when you have two string literals (words that are literally typed into your program source code, surrounded by quotation marks) in your program that have the same value, the Python compiler will automatically intern the strings, making them both stored at the same memory location. (Note that this doesn't always happen, and the rules for when this happens are quite convoluted, so please don't rely on this behavior in production code!)

Since in your interactive session both strings are actually stored in the same memory location, they have the same identity, so the is operator works as expected. But if you construct a string by some other method (even if that string contains exactly the same characters), then the string may be equal, but it is not the same string -- that is, it has a different identity, because it is stored in a different place in memory.

link|flag
vote up 2 vote down

I believe that this is known as "interned" strings. Python does this, so does Java, and so do C and C++ when compiling in optimized modes.

If you use two identical strings, instead of wasting memory by creating two string objects, all interned strings with the same contents point to the same memory.

This results in the Python "is" operator returning True because two strings with the same contents are pointing at the same string object. This will also happen in Java and in C.

This is only useful for memory savings though. You cannot rely on it to test for string equality, because the various interpreters and compilers and JIT engines cannot always do it.

link|flag
vote up 2 vote down

From my limited experience with python, is is used to compare two objects to see if they are the same object as opposed to two different objects with the same value. == is used to determine if the values are identical.

Here is a good example:

>>> s1 = u'public'
>>> s2 = 'public'
>>> s1 is s2
False
>>> s1 == s2
True

s1 is a unicode string, and s2 is a normal string. They are not the same type, but are the same value.

link|flag
But that's not right...I thought the point of an "is" test was to see if the two variables were in fact pointing at the exact same object. – jprete Oct 1 at 15:53
jprete is correct. is essentially compares memory addresses. – Jason Baker Oct 1 at 16:07
So you are correct. Maybe I was thinking of Ruby or something. Sorry for the confusion, I'll get it changed. – Jack M. Oct 1 at 20:03
Your example still follows the older text.... – jprete Oct 2 at 16:16
vote up 3 vote down

I think it has to do with the fact that, when the 'is' comparison evaluates to false, two distinct objects are used. If it evaluates to true, that means internally it's using the same exact object and not creating a new one, possibly because you created them within a fraction of 2 or so seconds and because there isn't a large time gap in between it's optimized and uses the same object.

This is why you should be using the equality operator ==, not is, to compare the value of a string object.

>>> s = 'one'
>>> s2 = 'two'
>>> s is s2
False
>>> s2 = s2.replace('two', 'one')
>>> s2
'one'
>>> s2 is s
False
>>>

In this example, I made s2, which was a different string object previously equal to 'one' but it is not the same object as s, because the interpreter did not use the same object as I did not initially assign it to 'one', if I had it would have made them the same object.

link|flag
Using .replace() as an example in this context is probably not the best, though, because its semantics can be confusing. s2 = s2.replace() will always create a new string object, assign the new string object to s2, and then dispose of the string object that s2 used to point to. So even if you did s = s.replace('one', 'one') you would still get a new string object. – Daniel Pryden Oct 1 at 16:20
Ah, good point and that is true. – meder Oct 1 at 16:46
vote up 4 vote down

The is keyword is a test for object identity while == is a value comparison.

If you use is, the result will be true if and only if the object is the same object. However, == will be true any time the values of the object are the same.

link|flag

Your Answer

Get an OpenID
or

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