如何判断一个值是否为null值

如何判断一个值是否为null值

如何判断一个值是否为null值
python中没有null,有一个是None。如果只是判断为假,则可以

if not a:

如果是要判断是否为None,则:

if a is None: