How do I achieve the effect of the === operator in Python?
For example, I don't want False == 0 to be True.
|
How do I achieve the effect of the For example, I don't want |
||||
| show 1 more comment |
|
Try |
|||||||||||||||
|
|
If you want to check that the value and type are the same use:
In Python, explicit type comparisons like this are usually avoided, but because booleans are a subclass of integers it's the only choice here.
|
|||||||||||
|
|
You can use the |
|||
|
|
|
Going with the Mathematica definition, here's a small function to do the job. Season
|
|||||
|
False == 0? – larsmans Jul 17 '11 at 17:40===mean in this context? Object identity or type and value equality? – user166390 Jul 17 '11 at 17:52===, you're not writing Python. Python uses duck typing and interfaces rather than types – Humphrey Bogart Sep 16 '11 at 22:13