operator.ifloordiv(a, b) operator.__ifloordiv__(a, b) a = ifloordiv(a, b) is equivalent to a
operator.matmul(a, b) operator.__matmul__(a, b) Return a @ b.
operator.__add__(a, b) Return a + b, for a and b numbers.
itertools.repeat(object[, times]) Make an iterator that returns object over and over again. Runs indefinitely unless
operator.neg(obj) operator.__neg__(obj) Return obj negated (-obj).
operator.__and__(a, b) Return the bitwise and of a and b.
operator.__imod__(a, b) a = imod(a, b) is equivalent to a %= b.
operator.__ior__(a, b) a = ior(a, b) is equivalent to a |= b.
itertools.cycle(iterable) Make an iterator returning elements from the iterable and saving a copy of each. When the iterable
operator.__ipow__(a, b) a = ipow(a, b) is equivalent to a **= b.
Page 10 of 13