Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python 2.7 check if variable is none

>>> NoneType = type(None)
>>> x = None
>>> type(x) == NoneType
True
>>> isinstance(x, NoneType)
True
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #check #variable
ADD COMMENT
Topic
Name
3+5 =