您好,登錄后才能下訂單哦!
這篇文章主要講解了“Python邏輯運算的優(yōu)先級”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Python邏輯運算的優(yōu)先級”吧!
1、and ‘與’
如果and左邊為False,則直接返回左邊的結(jié)果(False);如果and左邊為True,則返回的結(jié)果取決于右邊的數(shù)值。需要兩側(cè)都為true才會返回true;右側(cè)為false,所以整體返回false。
2、or ‘或’
如果or左邊為True,則直接返回左邊的結(jié)果(True);如果or左邊為False,則返回的結(jié)果取決于右邊的數(shù)值。只要有一側(cè)為true就會返回true;雖然右側(cè)為false,但是整體依然返回true。
3、not ‘非’
not就很好理解了,就是一個取反的操作。需要兩側(cè)都為true才會返回true;返回當(dāng)前的相反,當(dāng)前為true返回false,當(dāng)前為false返回true。
例如:not True---->False;not False--->True
4、實例:
#and or not
#優(yōu)先級,()> not > and > or
# print(2 > 1 and 1 < 4)
# print(2 > 1 and 1 < 4 or 2 < 3 and 9 > 6 or 2 < 4 and 3 < 2)
# T or T or F
#T or F
# print(3>4 or 4<3 and 1==1) # F
# print(1 < 2 and 3 < 4 or 1>2) # T
# print(2 > 1 and 3 < 4 or 4 > 5 and 2 < 1) # T
# print(1 > 2 and 3 < 4 or 4 > 5 and 2 > 1 or 9 < 8) # F
# print(1 > 1 and 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6) # F
# print(not 2 > 1 and 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6) # F
#ps int ----> bool 非零轉(zhuǎn)換成bool True 0 轉(zhuǎn)換成bool 是False
# print(bool(2))
# print(bool(-2))
# print(bool(0))
# #bool --->int
# print(int(True)) # 1
# print(int(False)) # 0
'''x or y x True,則返回x'''
# print(1 or 2) # 1
# print(3 or 2) # 3
# print(0 or 2) # 2
# print(0 or 100) # 100
# print(2 or 100 or 3 or 4) # 2
# print(0 or 4 and 3 or 2)
'''x and y x True,則返回y'''
# print(1 and 2)
# print(0 and 2)
print(2 or 1 < 3)
print(3 > 1 or 2 and 2)
5、邏輯運算的優(yōu)先級
運算符的優(yōu)先級:not>and>or。在復(fù)合運算中會應(yīng)用到這個優(yōu)先級知識點,就跟加減乘除同樣的道理。or 與 and 中 and的優(yōu)先級高。如果or優(yōu)先級大于and應(yīng)當(dāng)返回false,not 與 and 中 not的優(yōu)先級高;如果and優(yōu)先級大于not應(yīng)當(dāng)返回true。
感謝各位的閱讀,以上就是“Python邏輯運算的優(yōu)先級”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Python邏輯運算的優(yōu)先級這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。