tags:

views:

258

answers:

7
statlist = [('abc',5,1), ('bzs',66,1), ... ]
sorted(statlist, key=lambda x: int(x[1]))

I want to sort it by the integer largest to smallest. In this case, 5 and 66. But it doesn't seem to be working.

+7  A: 

The sorted function returns a new list so you will need to assign the results of the function like this:

new_list = sorted(statlist, key=lambda x: int(x[1]))
Andrew Hare
This does not do what the OP ask, quoting "the integer largest to smallest".
e-satis
Not relating to this, but could any one please tell me what does OP mean ? I have see it in other posts also. Thanks
Mahesh Velaga
Original Poster. Since SO works like a wiki, we refer to the very first user this way, this differentiate what he wrote from what has been corrected.
e-satis
+3  A: 

You can pass, key, and reverse to .sort function

>>> x.sort(key=lambda x:x[1],reverse=True)
>>> x
[('bzs', 66, 1), ('abc', 5, 1)]
>>>
S.Mark
A: 
>>> s = [('xyz', 8, 1), ('abc',5,1), ('bzs',66,1) ]
>>> s = sorted(s, key=lambda x: int(x[1]))
>>> s.reverse()
>>> print s
[('bzs', 66, 1), ('xyz', 8, 1), ('abc', 5, 1)]
The MYYN
+8  A: 

Use the .sort method for in place sorting:

statlist = [('abc',5,1), ('bzs',66,1), ... ]
statlist.sort(key=lambda x: int(x[1]))

If you do want to use sorted, then reassign the variable:

statlist = [('abc',5,1), ('bzs',66,1), ... ]
statlist = sorted(statlist, key=lambda x: int(x[1]))

For descending sort, use reverse:

statlist = [('abc',5,1), ('bzs',66,1), ... ]
statlist = sorted(statlist, key=lambda x: int(x[1]), reverse=True)

Then, you'd better use itemgetter instead of a lambda :

import operator
statlist = [('abc',5,1), ('bzs',66,1), ... ]
statlist = sorted(statlist, key=operator.itemgetter(1), reverse=True)
e-satis
+2  A: 
from operator import itemgetter
statlist = [('abc',5,1), ('bzs',66,1), ... ]

# statlist.sort modifiest the statlist, sorted returns a new one
# reverse puts the largest items to the front
statlist.sort(key=itemgetter(1), reverse=True)
THC4k
+3  A: 

for inplace sorting use

statlist.sort(key=lambda x: x[1])

for creating other list, with sorted data use

otherlist = sorted( statlist, key=lambda x: x[1] )
ogg
+1  A: 

In response to alex's comment that he thought that sorted() worked "like the sort function":

If it worked "like the sort function", it is unlikely to have been put in the library.

In any case, there is no sort function ... you refer to the sort method of list objects.

Simple demonstration using the interactive interpreter:

>>> alist = [3, 2, 1]; x = alist.sort(); print x; print alist
None
[1, 2, 3]
>>> alist = [3, 2, 1]; x = sorted(alist); print x; print alist
[1, 2, 3]
[3, 2, 1]

Here's a tip: look for patterns and similarities, but always verify your intuitive extrapolations. You might like to apply those ideas to reverse and reversed.

John Machin