Result Size:
625 x 571
demo_ref_keyword_none2.py:
x = None if x: print("Do you think None is True") else: print("None is not True...")
x
x
=
None
if
x
:
print
(
"Do you think None is True"
)
else
:
print
(
"None is not True..."
)
C:\Users\My Name>python demo_keyword_none2.py
None is not True...