I have seen it both ways, but which way is more Pythonic?
a = [1, 2, 3]
# version 1
if not 4 in a:
print 'is the not more pythonic?'
# version 2
if 4 not in a:
print 'this haz more engrish'
Which way would be considered better Python?
I have seen it both ways, but which way is more Pythonic?
a = [1, 2, 3]
# version 1
if not 4 in a:
print 'is the not more pythonic?'
# version 2
if 4 not in a:
print 'this haz more engrish'
Which way would be considered better Python?
Most would agree that
4 not in a
is more Pythonic.Python was designed with the purpose of being easy to understand and intelligible, and
4 not in a
sounds more like how you would say it in English - chances are you don't need to know Python to understand what that means!Note that in terms of bytecode, the two will be identical in CPython (although
not in
is technically a single operator,not 4 in a
is subject to optimization):I believe
not in
is more widely used.While the PEP 8 style guide doesn't explicitly discuss the topic, it does consider
not in
to be its own comparison operator.Don't forget about The Zen of Python. One of the core tenets of writing Python is that "Readability counts," so go with the choice that is the clearest to read and understand in your code.
Although
4 not in a
is to be preferred when the choice is made in isolation, there can be cases when the other choicenot 4 in a
is to be preferred.For example, if the spec for the software is written to match
not 4 in a
then it might be best to leave it matching the spec to aid when checking the software against the spec.A further example is that one way allows this expression of deteriorating health:
The second option is more Pythonic for two reasons:
It is one operator, translating to one bytecode operand. The other line is really
not (4 in a)
; two operators.As it happens, Python optimizes the latter case and translates
not (x in y)
intox not in y
anyway, but that is an implementation detail of the CPython compiler.