Tagged Questions
4
votes
3answers
422 views
Is python's sorted() function guaranteed to be stable?
The documentation doesn't guarantee that. Is there any other place that it is documented?
I'm guessing it might be stable since the sort method on lists is guaranteed to be stable (Notes 9th point: ...
3
votes
3answers
169 views
How to get indices of a sorted array in Python
I have a numerical list: myList = [1, 2, 3, 100, 5]
Now if I sort this list to obtain [1, 2, 3, 5, 100].
What I want is the indices of the elements from the
original list in the sorted order i.e. ...
2
votes
4answers
107 views
Thread-safe Sorted Collection
Is there an implementation of a thread-safe sorted collection in Python?
Python's docs reference SortedCollection but I'm not sure if it's thread-safe (is it?)
If there is no such implementation - how ...
2
votes
7answers
138 views
How to sort dict of dicts by keys?
I have a dict, that looks like:
channels = {
'24': {'type': 'plain', 'table_name': 'channel.items.AuctionChannel'},
'26': {'type': 'plain', 'table_name': 'channel.gm.DeleteAvatarChannel'},
'27': ...
2
votes
6answers
87 views
Sorting a counted list in Python
(I am brand new to any kind of programming so please be as specific as you can when you answer)
Problem: I have written a program to solve pythonchallenge.com level 2. The program works but the ...
2
votes
5answers
133 views
Sorting a csv file in Python with sorted() returns values in programmer DESC order, not time DESC order
I'm not doing anything overly complex I believe. I'm presorting a large csv data file because it is full of data that arrives in random time order. The index is correct, but the return formatting is ...
2
votes
3answers
205 views
Python sorting multiple attributes
I have a dictionary like the following. Key value pairs or username:name
d = {"user2":"Tom Cruise", "user1": "Tom Cruise"}
My problem is that i need to sort these by the Name, but if multiple users ...
1
vote
2answers
111 views
Python - Order nested list in alphabetical way
I have the following list:
["stephane", "philippe", "hélène", ["hugo", "jean-michel", "fernand"], "gustave"]
And I would like to order it like this:
["gustave", "hélène", ["fernand", "hugo", ...
1
vote
3answers
923 views
Python sorted() key function weirdness
While I was debugging some illogical behavour I came to the following weirdness in Python 2.5 sorted() function calls:
>>> aa = [10, 5, 20]
>>> sorted(range(len(aa)))
[0, 1, 2]
...
1
vote
2answers
217 views
What does python3 do with the methods passed to the “key” argument of sorted()?
I have a question about how python treats the methods passed to sorted(). Consider the following small script:
#!/usr/bin/env python3
import random
class SortClass:
def __init__(self):
...
0
votes
3answers
136 views
insert an item into sorted list Python
I'm creating a class where one of the methods inserts a new item into the sorted list. The item is inserted in the corrected (sorted) position in the sorted list. I'm not allowed to use any built-in ...
0
votes
2answers
63 views
Python: How to sort a list of objects using attrgetter with case insensitivity
self.data = sorted(self.data, key=attrgetter('word'))
self.data is a list of Word objects. Word objects have 'word', 'definition', 'example' and 'difficulty' attributes. I want to sort by the 'word' ...
0
votes
2answers
119 views
dictionary of object
I have a sorted dict
{
1L: '<'New_Config (type: 'String') (id: 1L) (value: 4L) (name: 'account_receivable')'>',
2L: '<'New_Config (type: 'string') (id: 2L) (value: 5L) (name: ...
-4
votes
1answer
85 views
Python sorted() function not working the way it should
Basically I have a nested list that I am trying to sort through the 1'st index
I copied the way that the python howto says how to do it but it doesn't seem to work and I don't understand why:
code ...