python and與or

來源:互聯網
上載者:User

標籤:

>>> 1 and 2 and 33>>> False and 1 and 2False>>> 1 and 2 and 3 and 44>>> 1 and 2 and 3 and FalseFalse>>> 1 or 2 or 31>>> False or 1 or 21>>> 1 and 2 and 3 or False and 13

 在python中and與or執行布爾邏輯運算,但返回的是實際值。

1.全為and,如果都為真,則返回最後一個變數值;如果為假,則返回第一個假值

2.全為or,如果都為假則返回最後一個值;如果為真,則返回第一個真值

3.and 與or:

>>> 1 and 2 or False2>>> False and 1 or 22

(a and b ) or c :如果a and b為真則結果為b,若a and b為假,結果為c,其實原理與and和or的一樣,類似於C中到bool?a:b

另外:and優先順序比or高

>>>False and 1 or 22>>> 1 or 2 and False1>>> (1 or 2 ) and FalseFalse

從上面3個例子看,第一個判斷出or的優先順序沒有and高,後2個例子可以知道and 與or優先順序不可能相同,如果相同,第2個例子結果就該是False了把?

python and與or

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.