Python – Referring to the null object in Python

nullpython

How do I refer to the null object in Python?

Best Answer

In Python, the 'null' object is the singleton None.

The best way to check things for "Noneness" is to use the identity operator, is:

if foo is None:
    ...