operator.eq(a, b) operator.ne(a, b) operator.ge(a, b) operator
operator.irshift(a, b) operator.__irshift__(a, b) a = irshift(a, b) is equivalent to a >>=
operator.__index__(a) Return a converted to an integer. Equivalent to a.__index__().
partial.keywords The keyword arguments that will be supplied when the partial object is called.
operator.__ifloordiv__(a, b) a = ifloordiv(a, b) is equivalent to a //= b.
itertools.compress(data, selectors) Make an iterator that filters elements from data returning only those that have
operator.gt(a, b) operator.__lt__(a, b) operator.__le__(a, b) operator
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.
itertools.zip_longest(*iterables, fillvalue=None) Make an iterator that aggregates elements from each of the iterables. If the
Page 1 of 13