What's the Pythonic way to sort a zipped list?
code :
names = list('datx')
vals = reversed(list(xrange(len(names))))
zipped = zip(names, vals)
print zipped
The code above prints [('d', 3), ('a', 2), ('t', 1), ('x', 0)]
I want to sort zipped by the values. So ideally it would end up looking like this [('x', 0), ('t', 1), ('a', 2), ('d', 3)].
sortedandsort. – JasonFruit Aug 22 '11 at 1:06.sort()sorts a list in-place. Andsortedworks on any iterator, but needs to use additional storage to accomplish the task. – Ned Batchelder Aug 22 '11 at 1:10sortedis consistent with other special python syntax, includingin,len, andreversed, which depend upon the__contains__,__len__, and__getitem__+__len__respectively (I thinksortedneeds__getitem__and__len__but I'm not sure). In many ways, it's also similar to the syntax for[]which is based on__setitem__and__getitem__, or()which initializes__call__. They're builtin functions that translate special internal functions into clear external syntax. – Jeff Tratner Jun 12 '12 at 5:26