This is a possibly silly question, but looking at the mapping of operators to functions I noticed that there is no function to express the not in operator. At first I thought this was probably because the interpreter just reorders this to be not x in y, but there is a function for is not which seems like it should behave exactly the same as not in. Am I missing something, or does that operator really not exist?
Here's a really stupid example where you might want this:
def compare_iter(a,b,func):
return [func(aa,bb) for aa,bb in zip(a,b)]
my_compare=compare_iter(xx,yy,lambda x,y:x not in y) #lambda -- yuck
my_compare=map(operator.not_,compare_iter(xx,yy,operator.contains) #extra map? grr...
#it would be nice to do: my_compare=compare_iter(xx,yy,operator.not_contains)
Of course I could write my own function for this, but then you pay a price in efficiency whereas the operator module could push this code out of python and therefore execute faster.
a is not bsimply be reordered tonot a is b? – JAB Jul 11 '12 at 14:51not incould potentially be done faster than a check forin? – Paul Manta Jul 11 '12 at 14:53not inis by definition an exhaustive search. – Colin Dunklau Jul 11 '12 at 14:56not_containsfunction which could then be used to pass to other functions or whatever (instead of relying onlambda). – mgilson Jul 11 '12 at 14:58