数学中有‘且’、‘或’、‘非’等逻辑关系的判断,编程语言当中也大都有着相似的逻辑运算规定,上面咱们就来看看 python 语言中的逻辑运算符(www.wakey.com.cn/document-logic.html)有哪些,应该怎么应用。
一、python 的逻辑运算符
二、逻辑运算符的用法
a = b = 15
c = 20
d = True
print(a == b and b == c)
print(a == b and b != c)
print(a == b or b <= c)
print(a*2 >= b and b != c)
print(not d)
返回后果:False
True
True
True
False
三、总结
and 运算符示意并且的意思,and 两边都为真才返回真,否则为假,and 运算符从左到右开始计算,如果右边为假,间接返回假,左边就不参加运算了。
or 运算符和 and 比拟具体,也是从左到右运算,一旦右边值为真间接断定为真,左边不做运算解决。