None
None is frequently used to represent the absence of a value. An example of this is when default arguments are not passed to a function.
Example
a = None
print(a) # None
print(a is None) # True
Reference
- None at docs.python.org