首页 > 编程语言 > 详细

Python—None

时间:2019-08-01 21:34:37      阅读:68      评论:0      收藏:0      [点我收藏+]

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

Python—None

原文:https://www.cnblogs.com/malinqing/p/11285437.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!