python中None代表一个特殊的空值,即为一个空对象,没有任何的值。
一般用于assert,判断,函数无返回时的默认,具体如下:
1、assert断言:
mylist = ['a', 'b', 'c'] >>> assert len(mylist) is not None # 用assert判断列表不为空,正确无返回 >>> assert len(mylist) is None # 用assert判断列表为空
2、if…else…
a = None if a: print "a is not None" else: print "a is None"
3、如果函数无return,则默认返回None
def add1(a,b): return a+b a1=add1(1,2) print a1 #会输出3,因为有return,则有返回值 def add2(a,b): print a+b a2 = add2(1,2) print a2 #会输出None,因为没有return,则add2为None
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试