A quick Python note

Have a look at this brief snippet:

In [2]: a = range(10)
In [3]: 3 in a
Out[3]: 1
In [4]: 3 not in a
Out[4]: 0
In [5]: not (3 in a)
Out[5]: 0

Input/output 4 should strike you as a tad strange if you don’t know Python that well but are familiar with similar constructs in other languages. At first glance, it almost seems like the sense of an operator can be negated with the not operator.

Fortunately, this is simply a case of the whole of not in being a single operator in Python. e not in S is equivalent to not (e in S).

Related posts:

  1. I’m an engineer in the body of a computer scientist.
  2. Emacs Python folding fixed
  3. Python new-style object method resolution order
  4. Python does rule
  5. Python bookses

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>