Python 中 OR 和 AND 操作符有什么不同?
在 Python 中,and 和 or(以及 not)被定义为逻辑运算符。这两个都要求两个可能评估为真或假的运算数。
and 运算符仅当两个运算数都为真时才返回真。
>>> a=50 >>> b=25 >>> a>40 and b>40 False >>> a>100 and b<50 False >>> a==0 and b==0 False >>> a>0 and b>0 True
or 运算符在任一运算数为真时返回真。
>>> a=50 >>> b=25 >>> a>40 or b>40 True >>> a>100 or b<50 True >>> a==0 or b==0 False >>> a>0 or b>0 True
广告