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?
|
This first unzips your list, then finds the max for each tuple position
This will also work for tuples of any length in a list. |
|||||||||||
|
|
|||
|
|
|
A general approach would be something like this:
For Python 3, you'd need change the line that creates
The idea can be abstracted into a function which works in both Python 2 and 3:
Which doesn't even require all the sub-sequences to be the same length. |
||||
|
|
|
At least with Python 2.7, the "zip" is not necessary, so this simplifies to |
||||
|