Out of these not None tests.
if val != None:
if not (val is None):
if val is not None:
Which is preferable, and why?
|
Out of these not None tests.
Which is preferable, and why? |
||||
is the Pythonic idiom for testing that a variable is not set to As for why this is preferred to
this is simply part of the Zen of Python: "Readability counts." Good Python is often close to good pseudocode. |
|||||||||
|
|
From, Programming Recommendations, PEP 8:
PEP 8 is essential reading for any Python programmer. |
|||
|
|
|
Either of the latter two, since |
|||||
|
isand==. [ Pythonif x is not Noneorif not x is None? ](stackoverflow.com/questions/2710940/…) shows that the last two are equivalent. – Matthew Flaschen Oct 19 '10 at 3:30