insert 和 if x is not None

Posted ---

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了insert 和 if x is not None相关的知识,希望对你有一定的参考价值。

insert(位置,元素)

#!/usr/bin/python

aList = [123, ‘xyz‘, ‘zara‘, ‘abc‘]

aList.insert( 3, 2009)

print "Final List : ", aList

也许你是想判断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, 空列表[], 空字典{}, 空元组()时对你的判断没有影响才行。

 

 

 

dd

以上是关于insert 和 if x is not None的主要内容,如果未能解决你的问题,请参考以下文章

Python `if x is not None` 或 `if not x is None`? [关闭]

TypeError: ‘Collection‘ object is not callable. If you meant to call the ‘insert‘ method on a ‘Datab

Python`如果x不是None`或`if not x is None`?

Terminal Non UTF-8 locale is not supported

python is not None

Unity3D之报错 - Instantiating a non-readable texture is not allowed!