在Python中,與、或、非運(yùn)算符分別使用and
、or
、not
。
and
:當(dāng)兩個(gè)條件都為真時(shí),返回真;否則返回假。a = True
b = False
print(a and b) # False
or
:當(dāng)兩個(gè)條件至少有一個(gè)為真時(shí),返回真;否則返回假。a = True
b = False
print(a or b) # True
not
:對(duì)條件進(jìn)行取反。a = True
print(not a) # False
這些邏輯運(yùn)算符可以用于復(fù)雜的條件判斷,幫助我們控制程序流程。