gpt4 book ai didi

python - 这个 "if"语句是什么意思?

转载 作者:太空宇宙 更新时间:2023-11-04 07:01:09 25 4
gpt4 key购买 nike

在示例 Hadoop reduce 程序中,存在这样的“if”语句。我想知道什么时候同一个变量“a”在“if”语句中使用了两次,如下

if a and a == b:
print "It is working!"

最佳答案

仅当 a 为真时,它才会测试相等性 (a == b)。

可以改写为

if a:
if a == b:
print("It is working!")

注意运算符优先级:它等于if (a and a) == b

关于python - 这个 "if"语句是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25629857/

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