Python學習(四)數據結構 —— bool

Python 布爾類型 bool

  python 中布爾值使用常量True 和 False來表示;注意大小寫python

  比較運算符< > == 等返回的類型就是bool類型;布爾類型一般在 if 和 while 語句中應用app

  這邊須要注意的是,python中,bool是int的子類(繼承int),故 True==1  False==0 是會返回Ture的,有點坑,如要切實判斷用 xxx is Truespa

1 print(True==1)                        # 返回True
2 print(False==0)                       # 返回True
3 print(1 is True)                    
4 print(0 is False)

    另外,還有幾個坑。。。 如,Python2中True/False不是關鍵字,所以咱們能夠對其進行任意的賦值;同理,Python 中 if(True) 的效率遠比不上 if(1)code

 True = "True is not keyword in Python2"        # Python2 版本中True False不是關鍵字,可被賦值,Python3中會報錯 blog

    另,因爲bool是int,可進行數字計算  print(True+True) 繼承

 

True or False 斷定

  如下會被斷定爲 False :it

  • None
  • False
  • zero of any numeric type, for example, 0, 0.0, 0j.
  • any empty sequence, for example, '', (), [].
  • any empty mapping, for example, {}.
  • instances of user-defined classes, if the class defines a __bool__() or __len__() method, when that method returns the integer zero or bool value False.

  除了以上的,其餘的表達式均會被斷定爲 True,這個須要注意,與其餘的語言有比較大的不一樣。io

 1 print(bool())
 2 print(bool(False))
 3 print(bool(0),bool(0.0),bool(0j))
 4 print(bool(""),bool(()),bool([]),bool({}))
 5 class alfalse():
 6     def __bool__(self):           # 定義了 __bool__() 方法,始終返回False
 7         return False
 8 f = alfalse()
 9 print(bool(f))
10 class alzero():
11     def __len__(self):            # 定義了 __len__() 方法,始終返回0
12         return 0
13 zero = alzero()
14 print(bool(zero))
15 class justaclass():
16     pass
17 c = justaclass()
18 print(bool(c))                    # 通常class instance都返回爲True

 

布爾運算符 and   or   not

 

Operation Result
x or y if x is false, then y, else x
x and y if x is false, then x, else y
not x if x is false, then True, else False

 

    注意均爲小寫: and or not  ;  注意布爾運算的優先級低於表達式, not a == b 至關於 not (a == b), 若 a == not b 就會有語法錯誤table

 1 print((True and False),(False and False),(True and True))
 2 print((True or False),(False or False),(True or True))
 3 print((not True),(not False))
 4 print( 1>1 and 1<1 )                 # 表達式優於bool運算  至關於 print( (1>1) and (1<1) )
 5 print( (1>1 and 1)<1)                # 加括號了,值就不同了
 6 print(True and 1)                    # True and 數字,不建議這麼使用,返回的是數字
 7 print(True and 111)
 8 print(False and 2)                   # False and 數字,返回False
 9 print(not 1==1)
10 T = True
11 F = False
12 # print(T == not F)                  # 會報錯
13 print(T == (not F))                  # 需加括號
相關文章
相關標籤/搜索