Python學習之[邏輯運算]

來源:互聯網
上載者:User

標籤:結果   lse   運算   練習   布爾值   not   python學習   nbsp   個數   

邏輯運算是最基礎的技能之一,主要考察我們的邏輯能力:

首先我們要知道 這三個詞的意思 and or not 

and:並且

or:或

not:非真即假,非假即真

布爾值運算:

and:兩端值都為真,其運算結果為真 如 True and True =True  只要有一個假就為假: True and False=False

or:兩端只要有一個為真就是真 如: True or False=True 只要有一個真就為真

not True=False, not False=True

and or not 的運算順序.

運算順序 ()>not>and>or 

邏輯運算:

or : 如果兩個數字 做邏輯運算 如 x or y. 如果x =0 則結果為y .如果x>0則為x

and :與or 相反 即可

練習:

1)、6 or 2 > 1      6
2), 3 or 2 > 1 3
3)、0 or 5 < 4 False
4)、5 < 4 or 3 3
5)、2 > 1 or 6 True
6)、3 and 2 > 1 True
7)、0 and 3 > 1 0
8)、2 > 1 and 3 3
9)、3 > 1 and 0 0
10)、3 > 1 and 2 or 2 < 3 and 3 and 4 or 3 > 2 2

 

Python學習之[邏輯運算]

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.