what is the keyword "is" for?

Steve Holden steve at holdenweb.com
Tue Aug 15 06:02:50 EDT 2006


daniel wrote:
> Martin v. Löwis wrote:
[...]
>>For some objects, "change the object" is impossible. If you have
>>
>>a = b = 3
>>
>>then there is no way to change the object 3 to become 4 (say);
>>integer objects are "immutable". So for these, to make a change,
>>you really have to change the variable, not the value.
>>
> 
> sounds reasonable, I tried tuple which is also immutable, it behaves
> the same as integers. 
> 
Well spotted. Tuples are indeed immutable, as are strings, unicode 
strings, integers and floats.

regards
  Steve
-- 
Steve Holden       +44 150 684 7255  +1 800 494 3119
Holden Web LLC/Ltd          http://www.holdenweb.com
Skype: holdenweb       http://holdenweb.blogspot.com
Recent Ramblings     http://del.icio.us/steve.holden




More information about the Python-list mailing list