Forum     

Go Back   Digit Technology Discussion Forum > Software > Programming
Register FAQ Calendar Mark Forums Read

Programming The destination for developers - C, C++, Java, Python and the lot


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 27-01-2010, 08:44 AM   #1 (permalink)
In The Zone
 
bharat_r's Avatar
 
Join Date: Mar 2004
Location: Chennai
Posts: 470
Default Sorting a multidimensional list in python


Hello

I have created a multidimensional list in python

I used the following code:

Code:
 r =[(300, 4), (5, 6), (100, 2)]
I tried sorting it in ascending order using r.sort()
and I get [(5, 6), (100, 2), (300, 4)]

I want it to get sorted based on each on the 2nd element instead of the first. That is the result should be [(100,2), (300,4), (5,6)]

How do I go about doing this?

Thank you.
bharat_r is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 09-04-2010, 12:24 PM   #2 (permalink)
Right Off the Assembly Line
 
Join Date: Aug 2007
Posts: 32
Default Re: Sorting a multidimensional list in python

Try this:

from operator import itemgetter
r=[(300,4), (5,6), (100,2)]
s=sorted(r, key=itemgetter(1))
print (s)

The sorted method can be used instead of sort for flexibility. With key attribute you can specify what index element of tuple to use for sorting.

Thanks
ojha_riddhish is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Internet in Linux via Mobile GPRS thru Bluetooth Pathik Open Source 149 06-10-2008 06:47 AM
Wannabe Python Programmer - Please Help ! MetalheadGautham Programming 22 13-08-2008 11:27 AM
One Giant Command Line MetalheadGautham Open Source 23 24-05-2008 02:31 AM
Valuable Sites for Techies sreedevi Tutorials 15 04-10-2005 10:35 PM
web pages not opening--help prathap_lab QnA (read only) 98 21-04-2005 10:09 PM

 
Latest Threads
- by Charan
- by Charan
- by clmlbx

Advertisement




All times are GMT +5.5. The time now is 03:13 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2