operator.concat(a, b) operator.__concat__(a, b) Return a + b for a and b sequences
operator.pow(a, b) operator.__pow__(a, b) Return a ** b, for a and b numbers.
operator.__concat__(a, b) Return a + b for a and b sequences.
operator.__invert__(obj) Return the bitwise inverse of the number obj. This is equivalent to ~obj.
operator.__ixor__(a, b) a = ixor(a, b) is equivalent to a ^= b.
operator.abs(obj) operator.__abs__(obj) Return the absolute value of obj.
operator.__ne__(a, b) operator.__ge__(a, b) operator.__gt__(a, b) Perform
operator.__floordiv__(a, b) Return a // b.
itertools.islice(iterable, stop) itertools.islice(iterable, start, stop[, step]) Make an iterator that returns selected
operator.ilshift(a, b) operator.__ilshift__(a, b) a = ilshift(a, b) is equivalent to a <<=
Page 4 of 13