Python 2.7 Sprawdź, czy zmienna nie ma

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