Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python not null

test = "hello world"

if test is not None:
  print("test is not None")
  
test2 = None

if test2 is None:
  print("test2 is None")
 
PREVIOUS NEXT
Tagged: #python #null
ADD COMMENT
Topic
Name
9+3 =