Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a class:

class Prediction():
    def __init__(self, l):
        self.start = l[0]
        self.end = l[1]
        self.score = l[2]

And a list, where each element is a Prediction. It's aptly named predictions.

I want to sort predictions by the start attribute of the Prediction class.

Something like this:

predictions_start_order = sorted(predictions, key=start)

Which doesn't work. What am I missing?

share|improve this question

2 Answers

predictions_start_order = sorted(predictions, key=lambda x: x.start)
share|improve this answer
3  
If you're going to use a key function, use operator.attrgetter('start') instead of a lambda. – agf Oct 29 '11 at 19:59
2  
@agf Why ? Actually I find this notation a lot less readable. – log0 Oct 29 '11 at 20:01
@agf I don't like the fact that operator.attrgetter requires an additional import. I think both solutions are readable. – Eric Oct 29 '11 at 21:32
For what it's worth, operator.attrgetter('start') is faster than lambda x: x.start. – Sven Marnach Oct 31 '11 at 15:09

The key argument to sorted takes a function, not an attribute. What you're looking for is:

class Prediction():
    def __init__(self, l):
        self.start = l[0]
        self.end = l[1]
        self.score = l[2]

    def __lt__(self, other):
        return self.start < other.start

This will allows sorted to order an iterable of instances of this class automatically.

Only __lt__ is actually needed for sorting in Python, but PEP8 recommends you implement all of the rich comparisons or use the total_ordering decorator.

share|improve this answer
1  
FWIW, PEP 8 recommends defining all six rich comparisons rather than relying on the implementation using lt. Alternatively, you can use functools.total_ordering to fill-in the missing methods. – Raymond Hettinger Oct 29 '11 at 19:55
@RaymondHettinger Already included that based on your previous comment on another of my posts :) Just wanted to get the core answer up before I added details. – agf Oct 29 '11 at 19:58
I like this solution in the case where you are always going to be sorting by one field. For example, if start was the key for the Prediction class, I would prefer this method. – Eric Oct 29 '11 at 21:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.