变量:None
None is frequently used to represent the absence of a value, as when default arguments are not passed to a function.
n = None
print n
print n is None # True
None is frequently used to represent the absence of a value, as when default arguments are not passed to a function.
n = None
print n
print n is None # True