operator.__delitem__(a, b) Remove the value of a at index b.
operator.imul(a, b) operator.__imul__(a, b) a = imul(a, b) is equivalent to a *= b.
operator.__imul__(a, b) a = imul(a, b) is equivalent to a *= b.
operator.__getitem__(a, b) Return the value of a at index b.
operator.indexOf(a, b) Return the index of the first of occurrence of b in a.
operator.contains(a, b) operator.__contains__(a, b) Return the outcome of the test b in a. Note the
operator.attrgetter(attr) operator.attrgetter(*attrs) Return a callable object that fetches attr from its
operator.__abs__(obj) Return the absolute value of obj.
operator.and_(a, b) operator.__and__(a, b) Return the bitwise and of a and b.
operator.__iand__(a, b) a = iand(a, b) is equivalent to a &= b.
Page 9 of 13