operator.ixor(a, b) operator.__ixor__(a, b) a = ixor(a, b) is equivalent to a ^= b.
itertools.chain(*iterables) Make an iterator that returns elements from the first iterable until it is exhausted, then proceeds
operator.length_hint(obj, default=0) Return an estimated length for the object o. First try to return its actual length
operator.__pow__(a, b) Return a ** b, for a and b numbers.
operator.inv(obj) operator.invert(obj) operator.__inv__(obj) operator
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__().
itertools.permutations(iterable, r=None) Return successive r length permutations of elements in the iterable
operator.__eq__(a, b) operator.__ne__(a, b) operator.__ge__(a, b) operator
itertools.zip_longest(*iterables, fillvalue=None) Make an iterator that aggregates elements from each of the iterables. If the
Page 1 of 13