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
feedback
|
|
Try | |||||||||||||||
feedback
|
|
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.
| |||||||||||
feedback
|
|
You can use the | |||
|
feedback
|
|
Going with the Mathematica definition, here's a small function to do the job. Season
| |||||
feedback
|
False == 0? – larsmans Jul 17 '11 at 17:40===mean in this context? Object identity or type and value equality? – pst Jul 17 '11 at 17:52===, you're not writing Python. Python uses duck typing and interfaces rather than types – Beau Martínez Sep 16 '11 at 22:13