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