Say I have a list in the form [[x,y,z], [x,y,z] etc...] etc where each grouping represents a random point.
I want to order my points by the z coordinate, then within each grouping of z's, sort them by x coordinate. Is this possible?
|
|
Sure, look at this page under the section called "Operator Module Functions." Basically you just need to use sort's key feature with the itemgetter operator...
|
|||||||||||||||
|
|
For simple lookup, use
|
|||
|
|
|
If your list is in the form
then use this:
|
|||
|
|
|
If you go further down the page Mr. White linked to, you'll see how you can specify an arbitrary function to compute your sort key (using the handy cmp_to_key function provided). |
|||
|
|