In Python, if I have the following code:
r = Numeric(str)
i = int(r)
if r == i :
return i
return r
Is this equivalent to:
r = Numeric(str)
return r
Or do the == values of different types r and i give different return values r and i?
|
In Python, if I have the following code:
Is this equivalent to:
Or do the == values of different types r and i give different return values r and i? |
|||
|
|
|
It all depends if the class implements an adequate Edit: Added a little example:
|
||||
|
|
|
Lets see:
Different types can be considered equal using |
|||
|
|
|
Question: "do the == values of different types r and i give different return values r and i?" Answer: clearly they are different; they have different types.
In the above example, I declared a class called If the class implements a
With the above, we can now do:
|
|||
|
|