Is there any way to have Python operators line "==" and ">" return ints instead of bools. I know that I could use the int function (int(1 == 1)) or add 0 ((1 == 1) + 0) but I was wondering if there was an easy way to do it. Like when you want division to return floats you could type from __future__ import division. Is there any way to do this with operators returning ints? Or could I make a class extending __future__._Feature that would do what I want?
|
|
|||
|
Based on your clarification, you might change your comparison operator to something like:
This will convert the boolean result of Also, be careful about calling
|
|||||
|
|
You cant override the built-in comparison functions. In some sense the comparison operators are already returning |
|||
|
|
|
You can have the comparison operators of your custom classes return whatever you like -- simply implement the relevant methods ( The |
|||
|
|
|
On your own objects, it is easy to override each comparison operator. For built-ins, the override methods are "read only" so all my attempts to set them don't pan out.
|
|||
|
|
|
Cast your bool to an int?
Or cast that to a str?
|
|||
|
|
|
No, you can't. When Guido unified types and classes, he found a way to override the behavior of built-in types (due to the way he implemented things), but he declared it a bug and plugged the loophole. Changing the behavior of built-in types (except for your example - importing division from future, which is there for a good reason) is forbidden. Sorry, but I can't find the mailing list post. I remember it though, as it was quite interesting. |
|||
|
|

stack.push(stack.pop() > stack.pop()). If I wanted to then print the integer it would take the top of the stack and convert it to a string usingstr(stack.pop())and print that. I would want 1 or 0 to be printed but instead it prints "True" or "False". This creates complications when making things like if statements. – None May 5 '10 at 23:17