1. 程式人生 > >Python學習之[邏輯運算]

Python學習之[邏輯運算]

練習 基礎 們的 not lse 技能 如果 and ()

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

首先我們要知道 這三個詞的意思 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學習之[邏輯運算]