operator.__setitem__(a, b, c) Set the value of a at index b to c.
operator.iand(a, b) operator.__iand__(a, b) a = iand(a, b) is equivalent to a &= b
operator.__not__(obj) Return the outcome of not obj. (Note that there is no __not__() method
operator.getitem(a, b) operator.__getitem__(a, b) Return the value of a at index b.
operator.__irshift__(a, b) a = irshift(a, b) is equivalent to a >>= b.
itertools.filterfalse(predicate, iterable) Make an iterator that filters elements from iterable returning only those for which
operator.truediv(a, b) operator.__truediv__(a, b) Return a / b where 2/3 is .66 rather than 0. This
functools.partial(func, *args, **keywords) Return a new partial object which when called will behave like func
operator.ne(a, b) operator.ge(a, b) operator.gt(a, b) operator
operator.__concat__(a, b) Return a + b for a and b sequences.
Page 6 of 13