How do I refer to the null object in Python?
In Python, the 'null' object is the singleton None.
None
To check if something is None, use the is identity operator:
is
if foo is None: ...