Python's None problem
Like many languages, Python has a "null value", which it calls
None. By default, any Python variable can have the valueNoneat any moment in time, and the only way to know whether something is currentlyNoneis to manually inspect it.
Source: Python's None problem.