operator.gt(a, b) operator.__lt__(a, b) operator.__le__(a, b) operator
operator.le(a, b) operator.eq(a, b) operator.ne(a, b) operator
operator.__pow__(a, b) Return a ** b, for a and b numbers.
operator.inv(obj) operator.invert(obj) operator.__inv__(obj) operator
itertools.compress(data, selectors) Make an iterator that filters elements from data returning only those that have
operator.__iconcat__(a, b) a = iconcat(a, b) is equivalent to a += b for a and b
operator.__index__(a) Return a converted to an integer. Equivalent to a.__index__().
operator.xor(a, b) operator.__xor__(a, b) Return the bitwise exclusive or of a and b.
operator.__xor__(a, b) Return the bitwise exclusive or of a and b.
operator.__or__(a, b) Return the bitwise or of a and b.
Page 1 of 13