i happened upon this curiosity today:
>>> a = 123
>>> b = 123
>>> a is b
True
>>> a = 123.
>>> b = 123.
>>> a is b
False
and was able to track it down to , i think, a is b being more or less defined as id(a) == id(b). i have for some reason or the other got into the habit of using x is None for checking whether x is, well, None, and so today when i was writing code i accidentally wrote something which didn't work:
basename,ext = os.path.splitext(fname)
if ext is '.mp3':
#do something
else:
#do something else
i have assumed since string is an immutable type i could do that instead of ext == '.mp3', but some fnames unexpectedly ended up in the else block. simple to fix, yeah. but i felt slightly annoyed , because if ext is '.mp3' looks like a nice pythonic way to do it, it's more readable than ==, and now i'm curious about the technical details of why it's wrong.
i was hoping can someone shed some light on when it's better to use == and when it would be preferable to use is?
edit: just to clarify, i understand the technical difference between checks for equality and checks for identity, but i was more interested in when checking for identity is 'better'. i liked this answer in a question i found from following some of the links here -> Python's preferred comparison operators