Possible Duplicate:
Python ‘==’ vs ‘is’ comparing strings, ‘is’ fails sometimes, why?
Is
a == b
the same as
a is b
?
If not, what is the difference?
Edit: Why does
a = 1
a is 1
return True, but
a = 100.5
a is 100.5
return False?
|
1
|
Is
the same as
? If not, what is the difference? Edit: Why does
return True, but
return False?
|
||||||
|
closed as exact duplicate by SilentGhost, Peter, ChristopheD, hasen j, S.Lott Oct 28 at 1:33 |
|
|
No, these aren't the same.
So: use Also, you can overload |
||||||||||||||
|
|
|
As already very clearly explained above.
Also keep in mind that Python uses string interning (as an optimisation) so you can get the following strange side-effects:
|
||||||||
|