在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
這些邏輯運算符可以用于復雜的條件判斷,幫助我們控制程序流程。