Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
alist = [(1,3),(2,5),(2,4),(7,5)]

I need to get the min max value for each position in tuple.

Fox example: The exepected output of alist is

min_x = 1
max_x = 7

min_y = 3
max_y = 5

Is there any easy way to do?

share|improve this question
How many times do you want to iterate the list? (4 times, 2 times or 1 times). – KennyTM Oct 23 '10 at 6:25

4 Answers

map(max, zip(*alist))

This first unzips your list, then finds the max for each tuple position

>>> alist = [(1,3),(2,5),(2,4),(7,5)]
>>> zip(*alist)
[(1, 2, 2, 7), (3, 5, 4, 5)]
>>> map(max, zip(*alist))
[7, 5]
>>> map(min, zip(*alist))
[1, 3]

This will also work for tuples of any length in a list.

share|improve this answer
1  
Nice answer, I am yet to learn to use zip etc so elegantly – pyfunc Oct 23 '10 at 6:29
can you say a bit more about what the * in front of alist does? zip behaves REALLY differently without the * there... – Andrew Nov 6 '12 at 3:44
2  
@Andrew Sure, the * splice the list into the arguments of the function. The best way to understand this is by example: f(*[1, 2, 3]) is exactly the same as f(1, 2, 3), so zip(*[(1, 3), (2, 5), (2, 4), (7, 5)]) is the same as zip((1, 3), (2, 5), (2, 4), (7, 5)) which returns [(1, 2, 2, 7), (3, 5, 4, 5)]. For complete, gory details see the documentation – cobbal Nov 6 '12 at 7:03
>>> from operator import itemgetter
>>> alist = [(1,3),(2,5),(2,4),(7,5)]
>>> min(alist)[0], max(alist)[0]
(1, 7)
>>> min(alist, key=itemgetter(1))[1], max(alist, key=itemgetter(1))[1]
(3, 5)
share|improve this answer

A general approach would be something like this:

alist = [(1,6),(2,5),(2,4),(7,5)]

temp = map(sorted, zip(*alist))
min_x, max_x, min_y, max_y = temp[0][0], temp[0][-1], temp[1][0], temp[1][-1]

For Python 3, you'd need change the line that createstempto:

temp = tuple(map(sorted, zip(*alist)))

The idea can be abstracted into a function which works in both Python 2 and 3:

from functools import reduce  # moved into functools in release 2.6

def minmaxes(seq):
    return reduce(tuple.__add__, ((s[0], s[-1]) for s in map(sorted, zip(*seq))))

alist = [(1,6), (2,5), (2,4), (7,5)]
min_x, max_x, min_y, max_y = minmaxes(alist)

trios = [(1,6,6), (2,5,3), (2,4,9), (7,5,6)]
min_x, max_x, min_y, max_y, min_z, max_z = minmaxes(trios)

Which doesn't even require all the sub-sequences to be the same length.

share|improve this answer

At least with Python 2.7, the "zip" is not necessary, so this simplifies to map(max, *data) (where data is an iterator over tuples or lists of the same length).

share|improve this answer
Not sure what you mean, because map(max, *alist) is [7, 6] (as is map(max, *iter(alist))). – martineau Feb 15 at 3:15

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.