vote up 14 vote down star

Why is "hello" is "hello" == True in Python?

I read the following here:

"If two string literals are equal, they have been put to same
 memory location. A string is an immutable entity. No harm can
 be done."

So there is one and only one place in memory for every Python string? Sounds pretty strange. What's going on here?

flag

See here instead: pyref.infogami.com/intern – bzlm Sep 8 at 7:19
Also have a look at the id function for checking memory locations: print id("hello") – Blixt Sep 8 at 7:22

7 Answers

vote up 30 vote down check

Python (like Java, C, C++, .NET) uses string pooling / interning. The interpreter realises that "hello" is the same as "hello", so it optimizes and uses the same location in memory.

Another goodie: "hell" + "o" is "hello" ==> True

link|flag
4  
This is also known as "string interning" in the Python documentation. – bzlm Sep 8 at 7:15
thanks - updated. – cvondrick Sep 8 at 7:16
1  
Straight-forward and easily understandable answer. Thank you. – blahblah Sep 8 at 7:21
11  
Even C/C++ usually do this; "foo" == "foo" is often true in C. In both C and Python, this is an implementation detail; I don't think anything in Python requires that the interpreter do this, and in C/C++ this is an optimization that not all compilers do and it which can be disabled. (By contrast, this property is always true in Lua; all strings are interned.) – Glenn Maynard Sep 8 at 7:33
@Glenn, you're correct and I'm glad someone mentioned. Certainly no one should RELY on this being true. – Triptych Sep 9 at 21:33
vote up 0 vote down

Why is it strange. If the string is immutable it makes a lot of sense to only store it once. .NET has the same behavior.

link|flag
How is string interning related to immutability? Many things in both Python and ".NET" are immutable without being interned. – bzlm Sep 8 at 7:16
Because if it were possible for a string literal to change in memory, it couldn't be shared (or "interned"). – harto Sep 8 at 7:19
True, but given the fact the object is immutable allows safe sharing of the reference to the instance. – Brian Rasmussen Sep 8 at 7:21
vote up 1 vote down

The Python interpreter/compiler parses the string literals, i.e. the quoted list of characters. When it does this, it can detect "I've seen this string before", and use the same representation as last time. It can do this since it knows that strings defined in this way cannot be changed.

link|flag
vote up -3 vote down

Literal strings are probably grouped based on their hash or something similar. Two of the same literal strings will be stored in the same memory, and any references both refer to that.

 Memory        Code
-------
|          myLine = "hello"
|        /
|hello  <
|        \
|          myLine = "hello"
-------
link|flag
vote up 4 vote down

The is operator returns true if both arguments are the same object. Your result is a consequence of this, and the quoted bit.

In the case of string literals, these are interned, meaning they are compared to known strings. If an identical string is already known, the literal takes that value, instead of an alternative one. Thus, they become the same object, and the expression is true.

link|flag
vote up 9 vote down

So there is one and only one place in memory for every Python string?

No, only ones the interpreter has decided to optimise, which is a decision based on a policy that isn't part of the language specification and which may change in different CPython versions.

eg. on my install (2.6.2 Linux):

>>> 'X'*10 is 'X'*10
True
>>> 'X'*30 is 'X'*30
False

similarly for ints:

>>> 2**8 is 2**8
True
>>> 2**9 is 2**9
False

So don't rely on 'string' is 'string': even just looking at the C implementation it isn't safe.

link|flag
Thus, you should always use == for string equality comparisons. – TokenMacGuy Sep 8 at 17:27
vote up 0 vote down

I think if any two variables (not just strings) contain the same value, the value will be stored only once not twice and both the variables will point to the same location. This saves memory.

link|flag

Your Answer

Get an OpenID
or

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