RosettaCodeData/Task/Null-object/Python/null-object.py

6 lines
73 B
Python

x = None
if x is None:
print "x is None"
else:
print "x is not None"