python代码ifnotx:和ifxisnotNone:和ifnotxisNone:使
⽤介绍
代码中经常会有变量是否为None的判断,有三种主要的写法:
第⼀种是`if x is None`;
第⼆种是 `if not x:`;
第三种是`if not x is None`(这句这样理解更清晰`if not (x is None)`)。
如果你觉得这样写没啥区别,那么你可就要⼩⼼了,这⾥⾯有⼀个坑。先来看⼀下代码:
>>> 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 ,即:
复制代码代码如下:
not None == not False == not '' == not 0 == not [] == not {} == not ()
因此在使⽤列表的时候,如果你想区分x==[]和x==None两种情况的话, 此时`if not x:`将会出现问题:
>>> 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`,因此推荐前者,同时这也是⾕歌推荐的风格
结论:
`if x is not None`是最好的写法,清晰,不会出现错误,以后坚持使⽤这种写法。
使⽤if not x这种写法的前提是:必须清楚x等于None, False, 空字符串"", 0, 空列表[], 空字典{}, 空元组()时对你的判断没有影响才⾏。
foo is None 和 foo == None的区别
问题
if foo is None: pass
if foo == None: pass
如果⽐较相同的对象实例,is总是返回True ⽽ == 最终取决于 "eq()"
>>> class foo(object):
def __eq__(self, other):
return True
>>> f = foo()
>>> f == None
True
>>> f is None
False
>>> list1 = [1, 2, 3]
>>> list2 = [1, 2, 3]
>>> list1==list2
True
空字符串是什么
>>> list1 is list2
False
另外
(ob1 is ob2) 等价于 (id(ob1) == id(ob2))
python中的not具体表⽰是什么,举个例⼦说⼀下,衷⼼的感谢
在python中not是逻辑判断词,⽤于布尔型True和False,not True为False,not False为True,以下是⼏个常⽤的not的⽤法:
(1) not与逻辑判断句if连⽤,代表not后⾯的表达式为False的时候,执⾏冒号后⾯的语句。⽐如:
a = False
if not a: (这⾥因为a是False,所以not a就是True)
print "hello"
这⾥就能够输出结果hello
(2) 判断元素是否在列表或者字典中,if a not in b,a是元素,b是列表或字典,这句话的意思是如果a不在列表b中,那么就执⾏冒号后⾯的语句,⽐如:
a = 5
b = [1, 2, 3]
if a not in b:
print "hello"
这⾥也能够输出结果hello
not x 意思相当于 if x is false, then True, else False

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。