邏輯運算

邏輯運算是針對真假值的運算,所以運算出來的結果也會是真假值。主要有三種邏輯運算andornot

  • and 運算 : 當兩個運算元都是真的時候結果才是真,否則結果為假。
  • or 運算 : 當兩個運算元都是假的時候結果才是假,否則結果為真。
  • not 運算 : 真變為假,假變為真。

看以下範例:

>>> True and Ture
True
>>> Ture and False
False
>>> False or False
False
>>> False or True
True
>>> not True
False

邏輯運算式,常和比較運算式用在條件的敘述,例如:

if i >= 5 and i <= 10:
    print('5<=i<=10')

我們馬上會介紹到 if 述句!

results matching ""

    No results matching ""