demo_ref_keyword_none2.py:
x = None if x: print("Do you think None is True") else: print("None is not True...")
➜ begtut>python demo_keyword_none2.py
None is not True...