Python语言基础 互动版

逻辑运算符


运算符描述实例
and 布尔"与" - 如果x为False,x and y返回False,否则它返回y的计算值。 (a and b) 返回 true。
or布尔"或" - 如果x是True,它返回True,否则它返回y的计算值。 (a or b) 返回 true。
not布尔"非" - 如果x为True,返回False。如果x为False,它返回True。 not(a and b) 返回 false。

试判断一下(100/10==10 and 100/2==51)是true还是false。