Uhm, thanks. (I've used lambda-sort earlier, but quite forgot......)
:)

On 18 May 2006 12:38:55 -0700, Paul Rubin
<http://[EMAIL PROTECTED]> wrote:

>Ronny Mandal <[EMAIL PROTECTED]> writes:
>> And now I want to sort l reverse by the second element in the tuple,
>> i.e the result should ideally be:
>> 
>>  l = [(6,5),(2,3),(3,2)]
>
>sorted(l, key = lambda a: -a[1])
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to