表达式的优先级 表达式(Expression)是运算符(operator)和操作数(operand)所构成的序列 代码段 a = 1b = 2c = 3print("表达式计算结果是:",a or b and c) 结果输出 表达式计算结果是: 1 会优先计算 a
表达式的优先级
表达式(Expression)是运算符(operator)和操作数(operand)所构成的序列
代码段
a = 1 b = 2 c = 3 print("表达式计算结果是:",a or b and c)
结果输出
表达式计算结果是: 1
会优先计算 and,取值3,后面计算or,最后结果为1
实例
a = 1 b = 2 c = 2 print(not a or b+2 == c) # 执行优先级 (not a) or ((b+2)== c) print(b+2 == c) print( not a)
输出结果
False
False
False
逻辑运算符优先级 not>and>or
以上就是本次介绍的全部相关知识点,感谢大家的学习和对易盾网络的支持。