Python—None

None是一个特殊的常量。
None不是False。
None不是0。
None不是空字符串。
None有自己的数据类型NoneType,并且是NoneType中唯一的值。
None只是一个空值的对象,可以将None赋值给任何变量,但不能创建其他NoneType对象。


Python中哪些形式的数据为空呢?
 
常量None
常量False
空列表
空元组
空集合
空字典
整数0
浮点数0.0
空字符串''


None一般用于函数中表示参数的缺省

def func(a, b=None):
    if b is None:
        print('b is None')
    if a is not None:
        print('a :', a)
        a = None
        print('a :', a)
        print('a is not None :', a is not None)
        print('not None :', not None)
    return None

if not func(666):
    print('not func(666) -> True')

 
输出结果:

b is None
a : 666
a : None
a is not None : False
not None : True
not func(666) -> True

最后来加深一下印象

bool(None) # False
not None is bool(not None) # True
# How to use ↓
object is None # None和任何其他数据类型对象比较永远返回False
object is not None

猜你喜欢

转载自www.cnblogs.com/malinqing/p/11285437.html