python中not的用法

python中的not具體表示是什麼:

在python中not是邏輯判斷詞,用於布爾型True和False,not True爲False,not False爲True,如下是幾個經常使用的not的用法:python

(1) not與邏輯判斷句if連用,表明not後面的表達式爲False的時候,執行冒號後面的語句。好比:git

a = Falsegithub

if not a:  (這裏由於a是False,因此not a就是True)函數

   print "hello"this

這裏就可以輸出結果hellospa

(2) 判斷元素是否在列表或者字典中,if a not in b,a是元素,b是列表或字典,這句話的意思是若是a不在列表b中,那麼就執行冒號後面的語句,好比:.net

a = 5code

b = [1, 2, 3]對象

if a not in b:blog

   print "hello"

這裏也可以輸出結果hello

not x 意思至關於 if x is false, then True, else False

代碼中常常會有變量是否爲None的判斷,有三種主要的寫法:

 第一種是`if x is None`;

第二種是 `if not x:`;

第三種是`if not x is None`(這句這樣理解更清晰`if not (x is None)`) 。

若是你以爲這樣寫沒啥區別,那麼你可就要當心了,這裏面有一個坑。先來看一下代碼:

[python]  view plain copy
 
  1. >>> x = 1  
  2. >>> not x  
  3. False  
  4. >>> x = [1]  
  5. >>> not x  
  6. False  
  7. >>> x = 0  
  8. >>> not x  
  9. True  
  10. >>> x = [0]         # You don't want to fall in this one.  
  11. >>> not x  
  12. False  
在python中 None,  False, 空字符串"", 0, 空列表[], 空字典{}, 空元組()都至關於False ,即:
[python]  view plain copy
 
  1. not None == not False == not '' == not 0 == not [] == not {} == not ()  

所以在使用列表的時候,若是你想區分x==[]和x==None兩種狀況的話, 此時`if not x:`將會出現問題:
[python]  view plain copy
 
  1. >>> x = []  
  2. >>> y = None  
  3. >>>   
  4. >>> x is None  
  5. False  
  6. >>> y is None  
  7. True  
  8. >>>   
  9. >>>   
  10. >>> not x  
  11. True  
  12. >>> not y  
  13. True  
  14. >>>   
  15. >>>   
  16. >>> not x is None  
  17. >>> True  
  18. >>> not y is None  
  19. False  
  20. >>>   
也許你是想判斷x是否爲None,可是卻把`x==[]`的狀況也判斷進來了,此種狀況下將沒法區分。
對於習慣於使用if not x這種寫法的pythoner,必須清楚x等於None,  False, 空字符串"", 0, 空列表[], 空字典{}, 空元組()時對你的判斷沒有影響才行。 
而對於`if x is not None`和`if not x is None`寫法,很明顯前者更清晰,然後者有可能使讀者誤解爲`if (not x) is None`,所以推薦前者,同時這也是谷歌推薦的風格


結論:
`if x is not None`是最好的寫法,清晰,不會出現錯誤,之後堅持使用這種寫法。
使用if not x這種寫法的前提是:必須清楚x等於None,  False, 空字符串"", 0, 空列表[], 空字典{}, 空元組()時對你的判斷沒有影響才行。


================================================================
不過這並不適用於變量是函數的狀況,如下轉載自:https://github.com/wklken/stackoverflow-py-top-qa/blob/master/contents/qa-control-flow.md

 

foo is None 和 foo == None的區別

 

問題 連接

  1.  
    if foo is None: pass
  2.  
    if foo == None: pass

若是比較相同的對象實例,is老是返回True 而 == 最終取決於 "eq()"

  1.  
    >>> class foo(object):
  2.  
    def __eq__(self, other):
  3.  
    return True
  4.  
     
  5.  
    >>> f = foo()
  6.  
    >>> f == None
  7.  
    True
  8.  
    >>> f is None
  9.  
    False
  10.  
     
  11.  
    >>> list1 = [1, 2, 3]
  12.  
    >>> list2 = [1, 2, 3]
  13.  
    >>> list1==list2
  14.  
    True
  15.  
    >>> list1 is list2
  16.  
    False

另外

(ob1 is ob2) 等價於 (id(ob1) == id(ob2))
相關文章
相關標籤/搜索