I have a similar question to this one but instead my tuple contains lists, as follows:
mytuple = (
["tomato", 3],
["say", 2],
["say", 5],
["I", 4],
["you", 1],
["tomato", 6],
)
What's the most efficient way of sorting this?
|
|
You can get a sorted tuple easy enough:
This will sort based on the items in the list. If the first two match, it compares the second, etc. If you have a different criteria, you can provide a comparison function. Updated: As a commenter noted, this returns a list. You can get another tuple like so:
|
|||||||||||||||
|
|
You cannot sort a tuple. What you can do is use sorted() which will not sort the tuple, but will create a sorted list from your tuple. If you really need a sorted tuple, you can then cast the return from sorted as a tuple:
This can be a waste of memory since you are creating a list and then discarding it (and also discarding the original tuple). Chances are you don't need a tuple. Much more efficient would be to start with a list and sort that. |
|||
|
|
|
The technique used in the accepted answer to that question ( |
|||
|
|
|
You will have to instantiate a new tuple, unfortunately: something like
should do the trick. If you need to set on the second element in the sublists, you can use the
|
||||
|
|