There is no Null in Python.

None

The closest equivalent is the None object that Python programmers use to define null objects and variables.

NOTE THOUGH that None it is not defined to be 0 or any other value. None in Python is an object and a FIRST-CLASS CITIZEN.

Examples

    return None

    if (my_varaible is None):

    if (my_variable is not None):