python 判斷變量是不是 None 的三種寫法

代碼中常常會有變量是否爲None的判斷,有三種主要的寫法:
第一種是`if x is None`;
第二種是 `if not x:`;
第三種是`if not x is None`(這句這樣理解更清晰`if not (x is None)`) 。
若是你以爲這樣寫沒啥區別,那麼你可就要當心了,這裏面有一個坑。先來看一下代碼:python

?
1
2
3
4
5
6
7
8
9
10
11
12
>>> x = 1
>>> not x
False
>>> x = [ 1 ]
>>> not x
False
>>> x = 0
>>> not x
True
>>> x = [ 0 ]     # You don't want to fall in this one.
>>> not x
False

在python中 None, False, 空字符串"", 0, 空列表[], 空字典{}, 空元組()都至關於False ,即:this

 

複製代碼代碼以下:

not None == not False == not '' == not 0 == not [] == not {} == not ()

 

所以在使用列表的時候,若是你想區分x==[]和x==None兩種狀況的話, 此時`if not x:`將會出現問題:spa

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
>>> x = []
>>> y = None
>>>
>>> x is None
False
>>> y is None
True
>>>
>>>
>>> not x
True
>>> not y
True
>>>
>>>
>>> not x is None
>>> True
>>> not y is None
False
>>>

也許你是想判斷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`,所以推薦前者,同時這也是谷歌推薦的風格.net

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

相關文章
相關標籤/搜索