operator.iadd(a, b) operator.__iadd__(a, b) a = iadd(a, b) is equivalent to a += b.
partial.keywords The keyword arguments that will be supplied when the partial object is called.
operator.__concat__(a, b) Return a + b for a and b sequences.
operator.__invert__(obj) Return the bitwise inverse of the number obj. This is equivalent to ~obj.
operator.sub(a, b) operator.__sub__(a, b) Return a - b.
itertools.filterfalse(predicate, iterable) Make an iterator that filters elements from iterable returning only those for which
itertools.starmap(function, iterable) Make an iterator that computes the function using arguments obtained from the iterable
operator.__ixor__(a, b) a = ixor(a, b) is equivalent to a ^= b.
functools.reduce(function, iterable[, initializer]) Apply function of two arguments cumulatively to the items of sequence
operator.ge(a, b) operator.gt(a, b) operator.__lt__(a, b) operator
Page 4 of 13