SyntaxFix
Write A Post
Hire A Developer
Questions
In Python, the 'null' object is the singleton None.
None
The best way to check things for "Noneness" is to use the identity operator, is:
is
if foo is None: ...