5 lines
73 B
Python
5 lines
73 B
Python
x = None
|
|
if x is None:
|
|
print "x is None"
|
|
else:
|
|
print "x is not None"
|