operator.__ior__(a, b) a = ior(a, b) is equivalent to a |= b.
operator.__iand__(a, b) a = iand(a, b) is equivalent to a &= b.
operator.neg(obj) operator.__neg__(obj) Return obj negated (-obj).
itertools.cycle(iterable) Make an iterator returning elements from the iterable and saving a copy of each. When the iterable
operator.__add__(a, b) Return a + b, for a and b numbers.
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.mod(a, b) operator.__mod__(a, b) Return a % b.
itertools.repeat(object[, times]) Make an iterator that returns object over and over again. Runs indefinitely unless
partial.func A callable object or function. Calls to the partial object will be forwarded to func
Page 10 of 13