itertools.accumulate(iterable[, func]) Make an iterator that returns accumulated sums, or accumulated results of other binary
functools.partial(func, *args, **keywords) Return a new partial object which when called will behave like func
operator.__ixor__(a, b) a = ixor(a, b) is equivalent to a ^= b.
class functools.partialmethod(func, *args, **keywords) Return a new partialmethod descriptor which behaves like
operator.__setitem__(a, b, c) Set the value of a at index b to c.
operator.__matmul__(a, b) Return a @ b.
itertools.filterfalse(predicate, iterable) Make an iterator that filters elements from iterable returning only those for which
operator.__irshift__(a, b) a = irshift(a, b) is equivalent to a >>= b.
operator.__ne__(a, b) operator.__ge__(a, b) operator.__gt__(a, b) Perform
operator.truediv(a, b) operator.__truediv__(a, b) Return a / b where 2/3 is .66 rather than 0. This
Page 5 of 13