operator.ixor(a, b) operator.__ixor__(a, b) a = ixor(a, b) is equivalent to a ^= b.
operator.ipow(a, b) operator.__ipow__(a, b) a = ipow(a, b) is equivalent to a **= b.
operator.__index__(a) Return a converted to an integer. Equivalent to a.__index__().
operator.eq(a, b) operator.ne(a, b) operator.ge(a, b) operator
itertools.chain(*iterables) Make an iterator that returns elements from the first iterable until it is exhausted, then proceeds
operator.xor(a, b) operator.__xor__(a, b) Return the bitwise exclusive or of a and b.
itertools.tee(iterable, n=2) Return n independent iterators from a single iterable. Roughly equivalent to:
itertools.permutations(iterable, r=None) Return successive r length permutations of elements in the iterable
itertools.compress(data, selectors) Make an iterator that filters elements from data returning only those that have
operator.add(a, b) operator.__add__(a, b) Return a + b, for a and b numbers.
Page 1 of 13