gpt4 book ai didi

python - 所有 vs 和 AND 任何 vs 或

转载 作者:太空狗 更新时间:2023-10-29 18:24:25 26 4
gpt4 key购买 nike

我很想知道这之间有什么区别

all and "and"
any and "or"

例如:status1=100,status2=300,status3=400

哪个更好用:

if status1==100 and status2 ==300 and status3 ==400:

if all([status1==100,status2==300,status3==400]):

对于 any 和 or 条件类似:

   if status1==100 or status2 ==300 or status3==400:
or
if any([status1==100, status2 ==300, status3==400])

哪个更有效,是使用内置函数还是原始 or and and 条件?

最佳答案

关键字andor 跟在Python 的short circuit evaluation 之后规则。因为 allany 都是函数,所以所有的参数都会被求值。如果某些条件是函数调用,则可能会出现不同的行为。

关于python - 所有 vs 和 AND 任何 vs 或,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22510205/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com