Python 2.7 Überprüfen Sie, ob keine Variable ist

>>> NoneType = type(None)
>>> x = None
>>> type(x) == NoneType
True
>>> isinstance(x, NoneType)
True
Evil Echidna