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
operator.__mul__(a, b) Return a * b, for a and b numbers.
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:
Page 1 of 13