None

None is frequently used to represent the absence of a value, as when default arguments are not passed to a function.

Example

a = None
print a             # None
print a is None     # True

Reference