Python是否支持短路?

Python是否支持在布尔表达式中短路?

132356 次浏览

是的,andor操作符都会短路——参见的文档

操作符andor中的短路行为:

让我们首先定义一个有用的函数来确定是否执行某项操作。一个简单的函数,它接受一个参数,打印消息并返回输入。

>>> def fun(i):
...     print "executed"
...     return i
...

可以在以下示例中观察到andor操作符的Python的短路行为:

>>> fun(1)
executed
1
>>> 1 or fun(1)    # due to short-circuiting  "executed" not printed
1
>>> 1 and fun(1)   # fun(1) called and "executed" printed
executed
1
>>> 0 and fun(1)   # due to short-circuiting  "executed" not printed
0

注意:以下值被解释器认为是false:

        False    None    0    ""    ()    []     {}

函数:any()all()中的短路行为:

Python的any()all()函数也支持短路。如文档所示;它们按顺序计算序列中的每个元素,直到找到一个允许提前退出计算的结果。考虑下面的例子来理解这两者。

函数any()检查是否有元素为True。一旦遇到True,它就会停止执行并返回True。

>>> any(fun(i) for i in [1, 2, 3, 4])   # bool(1) = True
executed
True
>>> any(fun(i) for i in [0, 2, 3, 4])
executed                               # bool(0) = False
executed                               # bool(2) = True
True
>>> any(fun(i) for i in [0, 0, 3, 4])
executed
executed
executed
True

函数all()检查所有元素是否为True,一旦遇到False就停止执行:

>>> all(fun(i) for i in [0, 0, 3, 4])
executed
False
>>> all(fun(i) for i in [1, 0, 3, 4])
executed
executed
False

链式比较中的短路行为:

此外,在Python中

比较可以任意链接;例如,x < y <= z等价于x < y and y <= z,除了y只被求值一次(但在这两种情况下,当x < y被发现为假时,z根本不被求值)。

>>> 5 > 6 > fun(3)    # same as:  5 > 6 and 6 > fun(3)
False                 # 5 > 6 is False so fun() not called and "executed" NOT printed
>>> 5 < 6 > fun(3)    # 5 < 6 is True
executed              # fun(3) called and "executed" printed
True
>>> 4 <= 6 > fun(7)   # 4 <= 6 is True
executed              # fun(3) called and "executed" printed
False
>>> 5 < fun(6) < 3    # only prints "executed" once
executed
False
>>> 5 < fun(6) and fun(6) < 3 # prints "executed" twice, because the second part executes it again
executed
executed
False
< p > 编辑:
还有一点值得注意,:-逻辑__ABC0, or操作符在Python中返回的是操作数的价值,而不是布尔值(TrueFalse)。例如:< / p >

操作x and y给出的结果是if x is false, then x, else y

与其他语言(如&&)不同,C语言中的||操作符返回0或1。

例子:

>>> 3 and 5    # Second operand evaluated and returned
5
>>> 3  and ()
()
>>> () and 5   # Second operand NOT evaluated as first operand () is  false
()             # so first operand returned

类似地,or运算符返回最左的值,其中bool(value) == True else最右的假值(根据短路行为),示例:

>>> 2 or 5    # left most operand bool(2) == True
2
>>> 0 or 5    # bool(0) == False and bool(5) == True
5
>>> 0 or ()
()
那么,这有什么用呢?一个例子在实际Python中由Magnus Lie Hetland给出:
假设用户应该输入他或她的名字,但可能选择不输入任何内容,在这种情况下,您希望使用默认值'<Unknown>'。 你可以使用if语句,但你也可以非常简洁地表述:

In [171]: name = raw_input('Enter Name: ') or '<Unknown>'
Enter Name:


In [172]: name
Out[172]: '<Unknown>'

换句话说,如果raw_input的返回值为真(不是空字符串),则将其赋值给name(没有任何改变);否则,默认的'<Unknown>'被分配给name

是的。在python解释器中尝试以下操作:

而且

>>>False and 3/0
False
>>>True and 3/0
ZeroDivisionError: integer division or modulo by zero

>>>True or 3/0
True
>>>False or 3/0
ZeroDivisionError: integer division or modulo by zero

是的,Python确实支持布尔运算符的短路的评估最小的评价麦卡锡评价。它用于减少计算布尔表达式输出时的计算次数。的例子,

基础功能

def a(x):
print('a')
return x


def b(x):
print('b')
return x

if(a(True) and b(True)):
print(1,end='\n\n')


if(a(False) and b(True)):
print(2,end='\n\n')

和输出

a
b
1


a

if(a(True) or b(False)):
print(3,end='\n\n')


if(a(False) or b(True)):
print(4,end='\n\n')

或输出

a
3


a
b
4