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

How can use the key argument for the min function to compare a list of objects's 1 attribute?

Example

class SpecialNumber:
    def __init__(self, i):
        self.number = i

li = [SpecialNumber(1), SpecialNumber(3), SpecialNumber(2)]
share|improve this question

4 Answers

up vote 18 down vote accepted

http://docs.python.org/library/operator.html#operator.attrgetter

from operator import attrgetter
min_num = min(li,key=attrgetter('number'))

Sample interactive session:

>>> li = [SpecialNumber(1), SpecialNumber(3), SpecialNumber(2)]
>>> [i.number for i in li]
[1, 3, 2]
>>> min_num = min(li,key=attrgetter('number'))
>>> print min_num.number
1
share|improve this answer

It's:

min(li, key=lambda x: x.number)

you need a function that accepts a SpecialNumber and returns its element.

share|improve this answer
Is it possible to not return the number element by return the SpecialNumber class? – ultimatebuster May 22 '11 at 1:36
It does return the SpecialNumber object by default. To get the lowest element, just run: min(li, key=lambda x: x.number).number – viraptor May 22 '11 at 1:41

I'd do it by overriding __cmp__

class SpecialNumber:
    def __init__(self, i):
        self.number = i

    def __repr__(self):
        return '<SpecialNumber(%d)>' % self.number

    def __cmp__(self, other):
        return cmp(self.number, other.number)

li = [SpecialNumber(1), SpecialNumber(3), SpecialNumber(2)]
print min(li) # <SpecialNumber(1)>
share|improve this answer
def compareSpecialNumber(a):
    return a.number

min(li, key=compareSpecialNumber)
share|improve this answer
1  
That doesn't even parse and the idea is wrong too. Please check your code. – viraptor May 22 '11 at 1:32
Please check again. – Dhaivat Pandya May 22 '11 at 1:34
Erm, key passes only 1 argument – ultimatebuster May 22 '11 at 1:37
key specifies a function of one argument that is used to extract a comparison key from each list element: key=str.lower. The default value is None. – viraptor May 22 '11 at 1:38
Oopsies again. Please check again. – Dhaivat Pandya May 22 '11 at 1:38
show 1 more comment

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.