Hello!
I am a newbie in Python. Recently, I get stuck with the problem of
sorting by two criteria. In brief, I have a two-dimensional list (for
a table or a matrix). Now, I need to sort by two columns, but I cannot
figure out how to do that. I read somewhere that it is possible to do:
>>table.sort().sort()
but it does not work.
Can anyone help me with this?
PS: I am using Python under Ubuntu 6.06.
Best,
PM 5 7746
neocortex wrote:
Hello!
I am a newbie in Python. Recently, I get stuck with the problem of
sorting by two criteria. In brief, I have a two-dimensional list (for
a table or a matrix). Now, I need to sort by two columns, but I cannot
figure out how to do that. I read somewhere that it is possible to do:
>>>table.sort().sort()
but it does not work.
Can anyone help me with this?
PS: I am using Python under Ubuntu 6.06.
You can specify an arbitrary comparison function with the cmp key to
sort. IOW, use table.sort(cmp=f), where f is defined to compare table
entries (rows?) by whichever criteria are required.
On Sat, 09 Feb 2008 18:05:14 -0800, neocortex wrote:
Hello!
I am a newbie in Python. Recently, I get stuck with the problem of
sorting by two criteria. In brief, I have a two-dimensional list (for a
table or a matrix). Now, I need to sort by two columns, but I cannot
figure out how to do that.
Can you give a (small, simple) example of your data, and what you expect
if you sort it successfully?
I read somewhere that it is possible to do:
>table.sort().sort()
but it does not work.
No it doesn't, because the sort() method returns None, and None doesn't
have a sort() method of its own.
table.sort() will sort table in place, so you need something like this:
>>table.sort() table.sort()
except naturally that just does the exact same sort twice in a row, which
is silly. So what you actually need is something like this:
>>table.sort(magic goes here) table.sort(different magic goes here)
where the first piece of magic tells Python to sort by the first column,
and the second by the second column. But to do that, we need to know more
about how you're setting up the table.
I'm *guessing* that you probably have something like this:
table = [ ['fred', 35, 8], # name, age, score
['bill', 29, 8],
['betty', 30, 9],
['morris', 17, 4],
['catherine', 23, 6],
['anna', 45, 8],
['george', 19, 5],
['tanya', 27, 7],
]
Now let's sort it:
>>from operator import itemgetter import pprint table.sort(key=itemgetter(0)) # sort by name table.sort(key=itemgetter(2)) # sort by score pprint.pprint(table)
[['morris', 17, 4],
['george', 19, 5],
['catherine', 23, 6],
['tanya', 27, 7],
['anna', 45, 8],
['bill', 29, 8],
['fred', 35, 8],
['betty', 30, 9]]
Does this help?
--
Steven
Hello!
Thank you all, so much! Now I can do double-criteria sort in at least
three ways. More than I have expected.
Best,
PM
[repost]
Duncan Booth:
>from operator import itemgetter lst = [(1,2,4),(3,2,1),(2,2,2),(2,1,4),(2,4,1)] lst.sort(key=itemgetter(1)) lst.sort(key=itemgetter(2)) lst
[(3, 2, 1), (2, 4, 1), (2, 2, 2), (2, 1, 4), (1, 2, 4)]
A little known thing from Python 2.5:
>>from operator import itemgetter lst = [(1,2,4),(3,2,1),(2,2,2),(2,1,4),(2,4,1)] sorted(lst, key=itemgetter(2, 1))
[(3, 2, 1), (2, 4, 1), (2, 2, 2), (2, 1, 4), (1, 2, 4)]
Bye,
bearophile
On Feb 11, 10:47 am, bearophileH...@lycos.com wrote:
[...]
A little known thing from Python 2.5:
[...]
>sorted(lst, key=itemgetter(2, 1))
Cute, thanks :-)
--bjorn This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: googleboy |
last post by:
I didn't think this would be as difficult as it now seems to me.
I am reading in a csv file that documents a bunch of different info on
about 200 books, such as title, author, publisher, isbn,...
|
by: Math Preregistration System |
last post by:
I'm using a std::list as a container for some pointers to objects, for
example
list< C* > lst;
I would like to sort them using two different criteria, say first by
C.first and then by...
|
by: Nhmiller |
last post by:
This is directly from Access' Help:
"About designing a query
When you open a query in Design view, or open a form, report, or datasheet and
show the Advanced Filter/Sort window (Advanced...
|
by: joseph speigle |
last post by:
hi,
To see the query results in native language see
http://database.sarang.net/?inc=read&aid=5368&criteria=pgsql&subcrit=qna&id=&limit=20&keyword=&page=1
the simpler url is
...
|
by: missnaughton |
last post by:
Hi
I'm designing a query for our hockey coach to print out players' names
to stick on game sheets. I could sort the query results based on
Jersey number, but the problem is the 2 goalie names...
|
by: Peter Olcott |
last post by:
How does not specify the sort criteria for Generic.List ??
The way that this is done in C++ STL is to implement operator<(), how is this
done in C# and DotNet for Generic.List ???
|
by: JosAH |
last post by:
Greetings,
I was asked to write a Tip Of the Week; so here goes: a lot of topics are
started here in this forum (and a lot of other forums too) mentioning a
problem about sorting data.
...
|
by: Socko |
last post by:
I'm trying to fix an sub routine in an VB module that basically reads in a MS database and writes it to an Excel Spread sheet. It works just fine except that the data isn't sorted correctly. I have...
|
by: fastestindian |
last post by:
Hi,
I am working on the project where i show a list of Log Records.
my list is as follows.
Original list
Id Time Event Details
1 1 Error1 xyz
2 1 ...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: erikbower65 |
last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps:
1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal.
2. Connect to...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: DJRhino |
last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer)
If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _
310030356 Or 310030359 Or 310030362 Or...
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: Mushico |
last post by:
How to calculate date of retirement from date of birth
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
| |