operator.imul(a, b) operator.__imul__(a, b) a = imul(a, b) is equivalent to a *= b.
operator.imod(a, b) operator.__imod__(a, b) a = imod(a, b) is equivalent to a %= b.
operator.__delitem__(a, b) Remove the value of a at index b.
operator.index(a) operator.__index__(a) Return a converted to an integer. Equivalent to a.__index__()
operator.or_(a, b) operator.__or__(a, b) Return the bitwise or of a and b.
operator.is_not(a, b) Return a is not b. Tests object identity.
operator.not_(obj) operator.__not__(obj) Return the outcome of not obj. (Note that there is
operator.__iadd__(a, b) a = iadd(a, b) is equivalent to a += b.
operator.imatmul(a, b) operator.__imatmul__(a, b) a = imatmul(a, b) is equivalent to a @= b
operator.__mod__(a, b) Return a % b.
Page 8 of 13