已知x=2,y9,z=-4,逻辑表达式x>y or z>x and not z>y的值是多少

问题描述:

已知x=2,y9,z=-4,逻辑表达式x>y or z>x and not z>y的值是多少

我们来一个一个地看.
x=2,y=9,z=-4
那么
x>y = False
z>x = False
z>y = False
则原题化为
False or False and not False
逻辑运算符的运算优先级是 not>and>or
先计算 not,得
False or False and True
再计算 and,得
False or False
最后计算 or,得
False
即该逻辑表达式结果为False