None
是內(nèi)置常量,是NoneType
的唯一真值畴蒲。None
經(jīng)常用于表示缺少值。
python中None
的典型用法:
定義函數(shù)時(shí)的默認(rèn)參數(shù)占位符
>>> def func(x, y=None):
pass
如果函數(shù)沒(méi)有返回值默認(rèn)會(huì)返回None
>>> def func():
pass
>>> res = func()
>>> print(res)
None