在Python中,与、或、非运算符分别使用and
、or
、not
。
and
:当两个条件都为真时,返回真;否则返回假。a = True
b = False
print(a and b) # False
or
:当两个条件至少有一个为真时,返回真;否则返回假。a = True
b = False
print(a or b) # True
not
:对条件进行取反。a = True
print(not a) # False
这些逻辑运算符可以用于复杂的条件判断,帮助我们控制程序流程。