如何在 Python 中引用 null 对象?
在 Python 中,“null”对象是单例None。
None
检查“Noneness”的最佳方法是使用身份运算符,is:
is
if foo is None: ...