How does python know?

Dave Angel davea at davea.name
Wed Feb 12 16:59:28 EST 2014


 Tobiah <toby at tobiah.org> Wrote in message:
> On 02/12/2014 12:17 PM, Tobiah wrote:
>> I do this:
>>
>> a = 'lasdfjlasdjflaksdjfl;akjsdf;kljasdl;kfjasl'
>> b = 'lasdfjlasdjflaksdjfl;akjsdf;kljasdl;kfjasl'
>>
>> print
>> print id(a)
>> print id(b)
>>
>>
>> And get this:
>>
>> True
>> 140329184721376
>> 140329184721376
>>
>>
>> This works for longer strings.  Does python
>> compare a new string to every other string
>> I've made in order to determine whether it
>> needs to create a new object?
>>
>> Thanks,
>>
>> Tobiah
> 
> Weird as well, is that in the interpreter,
> the introduction of punctuation appears to
> defeat the reuse of the object:
> 
>  >>> b = 'lasdfjlasdjflaksdjflakjsdfkljasdlkfjasl'
>  >>> a = 'lasdfjlasdjflaksdjflakjsdfkljasdlkfjasl'
>  >>> a is b
> True
>  >>> a = 'la;sdfjlasdjflaksdjflakjsdfkljasdlkfjasl'
>  >>> b = 'la;sdfjlasdjflaksdjflakjsdfkljasdlkfjasl'
>  >>> a is b
> 
> 


As others have said, interning is implementation specific, so you
 should never rely on it. 

I think the current CPython algorithm is designed to save both
 memory and time in the storage and look up of symbol names.  In a
 typical program, those are the most likely to be duplicated.  So
 if your literal is of reasonable size and doesn’t invalid symbol
 characters (such as space, punctuation,  etc) then it just might
 be added to the interned dictionary. 

-- 
DaveA




More information about the Python-list mailing list