Is it preferred to do:
if x is y:
return True
or
if x == y
return True
Same thing for "is not"
|
Is it preferred to do:
or
Same thing for "is not" |
|||
|
|
For all built-in Python objects (like strings, lists, dicts, functions, etc.), if It is possible to define an object So the bottom line is, Consider this for example:
PS. Instead of
it is more Pythonic to write
And similarly,
can be replaced with
|
|||||||||||||||
|
|
The Note that it is not only the case that
In practice though |
|||||
|
as others have already said, however, what you may start to notice, if you look at a lot of Python code, is that with http://mail.python.org/pipermail/tutor/2008-June/062708.html bottom line is that you can use object identity comparisons for checking against |
|||||||
|
|
Depends. |
|||
|
|