operator.contains(a, b) operator.__contains__(a, b) Return the outcome of the test b in a. Note the
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.__ilshift__(a, b) a = ilshift(a, b) is equivalent to a <<= b.
operator.methodcaller(name[, args...]) Return a callable object that calls the method name on its operand. If additional
operator.__sub__(a, b) Return a - b.
operator.__lt__(a, b) operator.__le__(a, b) operator.__eq__(a, b) operator
operator.pos(obj) operator.__pos__(obj) Return obj positive (+obj).
operator.__iadd__(a, b) a = iadd(a, b) is equivalent to a += b.
Page 8 of 13