Why does the expression 0 < 0 == 0 return False in Python?

前端 未结 9 1504
误落风尘
误落风尘 2020-11-22 01:48

Looking into Queue.py in Python 2.6, I found this construct that I found a bit strange:

def full(self):
    \"\"\"Return True if the queue is full, False oth         


        
相关标签:
9条回答
  • 2020-11-22 02:04

    I believe Python has special case handling for sequences of relational operators to make range comparisons easy to express. It's much nicer to be able to say 0 < x <= 5 than to say (0 < x) and (x <= 5).

    These are called chained comparisons. And that's a link to the documentation for them.

    With the other cases you talk about, the parenthesis force one relational operator to be applied before the other, and so they are no longer chained comparisons. And since True and False have values as integers you get the answers you do out of the parenthesized versions.

    0 讨论(0)
  • 2020-11-22 02:04

    As other's mentioned x comparison_operator y comparison_operator z is syntactical sugar for (x comparison_operator y) and (y comparison_operator z) with the bonus that y is only evaluated once.

    So your expression 0 < 0 == 0 is really (0 < 0) and (0 == 0), which evaluates to False and True which is just False.

    0 讨论(0)
  • 2020-11-22 02:08

    Here it is, in all its glory.

    >>> class showme(object):
    ...   def __init__(self, name, value):
    ...     self.name, self.value = name, value
    ...   def __repr__(self):
    ...     return "<showme %s:%s>" % (self.name, self.value)
    ...   def __cmp__(self, other):
    ...     print "cmp(%r, %r)" % (self, other)
    ...     if type(other) == showme:
    ...       return cmp(self.value, other.value)
    ...     else:
    ...       return cmp(self.value, other)
    ... 
    >>> showme(1,0) < showme(2,0) == showme(3,0)
    cmp(<showme 1:0>, <showme 2:0>)
    False
    >>> (showme(1,0) < showme(2,0)) == showme(3,0)
    cmp(<showme 1:0>, <showme 2:0>)
    cmp(<showme 3:0>, False)
    True
    >>> showme(1,0) < (showme(2,0) == showme(3,0))
    cmp(<showme 2:0>, <showme 3:0>)
    cmp(<showme 1:0>, True)
    True
    >>> 
    
    0 讨论(0)
  • 2020-11-22 02:09

    Because

    (0 < 0) and (0 == 0)
    

    is False. You can chain together comparison operators and they are automatically expanded out into the pairwise comparisons.


    EDIT -- clarification about True and False in Python

    In Python True and False are just instances of bool, which is a subclass of int. In other words, True really is just 1.

    The point of this is that you can use the result of a boolean comparison exactly like an integer. This leads to confusing things like

    >>> (1==1)+(1==1)
    2
    >>> (2<1)<1
    True
    

    But these will only happen if you parenthesise the comparisons so that they are evaluated first. Otherwise Python will expand out the comparison operators.

    0 讨论(0)
  • 2020-11-22 02:12

    maybe this excerpt from the docs can help:

    These are the so-called “rich comparison” methods, and are called for comparison operators in preference to __cmp__() below. The correspondence between operator symbols and method names is as follows: x<y calls x.__lt__(y), x<=y calls x.__le__(y), x==y calls x.__eq__(y), x!=y and x<>y call x.__ne__(y), x>y calls x.__gt__(y), and x>=y calls x.__ge__(y).

    A rich comparison method may return the singleton NotImplemented if it does not implement the operation for a given pair of arguments. By convention, False and True are returned for a successful comparison. However, these methods can return any value, so if the comparison operator is used in a Boolean context (e.g., in the condition of an if statement), Python will call bool() on the value to determine if the result is true or false.

    There are no implied relationships among the comparison operators. The truth of x==y does not imply that x!=y is false. Accordingly, when defining __eq__(), one should also define __ne__() so that the operators will behave as expected. See the paragraph on __hash__() for some important notes on creating hashable objects which support custom comparison operations and are usable as dictionary keys.

    There are no swapped-argument versions of these methods (to be used when the left argument does not support the operation but the right argument does); rather, __lt__() and __gt__() are each other’s reflection, __le__() and __ge__() are each other’s reflection, and __eq__() and __ne__() are their own reflection.

    Arguments to rich comparison methods are never coerced.

    These were comparisons but since you are chaining comparisons you should know that:

    Comparisons can be chained arbitrarily, e.g., x < y <= z is equivalent to x < y and y <= z, except that y is evaluated only once (but in both cases z is not evaluated at all when x < y is found to be false).

    Formally, if a, b, c, ..., y, z are expressions and op1, op2, ..., opN are comparison operators, then a op1 b op2 c ... y opN z is equivalent to a op1 b and b op2 c and ... y opN z, except that each expression is evaluated at most once.

    0 讨论(0)
  • 2020-11-22 02:13

    The strange behavior your experiencing comes from pythons ability to chain conditions. Since it finds 0 is not less than 0, it decides the entire expression evaluates to false. As soon as you break this apart into seperate conditions, you're changing the functionality. It initially is essentially testing that a < b && b == c for your original statement of a < b == c.

    Another example:

    >>> 1 < 5 < 3
    False
    
    >>> (1 < 5) < 3
    True
    
    0 讨论(0)
提交回复
热议问题