Benjamin Peterson schrieb: > I would like to propose a extra parameter `predicate` to list.index() like this: > > def index(self, obj, predicate=operator.eq): > for idx, item in enumerate(self): > if predicate(item, obj): > return idx > raise IndexError +0 from me Are you planing in adding the same feature for count, too? Christian