operator.add(a, b) operator.__add__(a, b) Return a + b, for a and b numbers.
operator.gt(a, b) operator.__lt__(a, b) operator.__le__(a, b) operator
operator.__or__(a, b) Return the bitwise or of a and b.
operator.__mul__(a, b) Return a * b, for a and b numbers.
operator.xor(a, b) operator.__xor__(a, b) Return the bitwise exclusive or of a and b.
operator.__eq__(a, b) operator.__ne__(a, b) operator.__ge__(a, b) operator
operator.__index__(a) Return a converted to an integer. Equivalent to a.__index__().
operator.__pos__(obj) Return obj positive (+obj).
operator.ipow(a, b) operator.__ipow__(a, b) a = ipow(a, b) is equivalent to a **= b.
operator.length_hint(obj, default=0) Return an estimated length for the object o. First try to return its actual length
Page 1 of 13