Python 支持短路吗?
- 2024-11-21 08:34:00
- admin 原创
- 5
问题描述:
Python 是否支持布尔表达式中的短路?
解决方案 1:
是的,and
和or
运算符都短路——请参阅文档。
解决方案 2:
运算符中的短路行为and
:or
让我们首先定义一个有用的函数来确定某件事是否执行。一个简单的函数,它接受一个参数,打印一条消息并返回输入,不做任何改变。
>>> def fun(i):
... print "executed"
... return i
...
可以在以下示例中观察 Python 的,运算符的短路行为:and
`or`
>>> 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 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
只评估一次(但在两种情况下,当发现为假z
时根本不会评估)。x < y
>>> 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
编辑:
还有一点值得注意: Python 中的逻辑and
运算or
符返回操作数的值,而不是布尔值(True
或False
)。例如:
运算
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
,否则返回最右边的假值(根据短路行为),示例:
>>> 2 or 5 # left most operand bool(2) == True
2
>>> 0 or 5 # bool(0) == False and bool(5) == True
5
>>> 0 or ()
()
那么,这有什么用呢?Magnus Lie Hetland 所著的《实用 Python》
一书中给出了一个例子:
假设用户应该输入自己的姓名,但可能选择不输入任何内容,在这种情况下,您需要使用默认值'<Unknown>'
。您可以使用 if 语句,但也可以非常简洁地陈述:
In [171]: name = raw_input('Enter Name: ') or '<Unknown>'
Enter Name:
In [172]: name
Out[172]: '<Unknown>'
换句话说,如果 from 的返回值为raw_input
true(不是空字符串),则将其分配给 name(不发生任何变化);否则,将默认'<Unknown>'
分配给name
。
解决方案 3:
是的。请在 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
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件