Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a dictionary. The keys are dates (datetime). I need to sort the dictionary so that the values in the dictionary are sorted by date - so that by iterating through the dictionary, I am processing items in the desired chronological (i.e. date/time) order.

How may I sort such a dictionary by date?

Example:

mydict = { '2000-01-01': {fld_1: 1, fld_2: 42}, '2000-01-02': {fld_1:23, fld_2: 22.17} }

Note: I am using strings here instead of datetime, to keep the example simple

share|improve this question
2  
sorting should work in yyyy-mm-dd format as strings also. – Tony Veijalainen Oct 20 '10 at 11:49
Glad someone already asked this ;) – PeterM Jun 21 '11 at 9:34

6 Answers

If you're using Python 2.7+ or 3.1+ you could create an OrderedDict from collections from a sort of your dictionary and then iterate through that.

ordered = OrderedDict(sorted(mydict.items(), key=lambda t: t[0]))

However, depending on what you want to do it's probably easier to iterate over a sorted list of keys from your dict.

share|improve this answer
What might be even better than creating an OrderedDict or retrieving and then sorting the keys after any changes are made to the dictionary, would be a SortedDict. – martineau Oct 20 '10 at 13:16

Dictionaries never store anything in some order. But you can get a list of keys using d.keys() which could be sorted. Iterate over a generator like below.

def sortdict(d):
    for key in sorted(d): yield d[key]

Using this you will be able to iterate over values in chronological order.

for value in sortdict(mydict):
    # your code
    pass
share|improve this answer
you don't need .keys() there – SilentGhost Oct 20 '10 at 11:49
@SilentGhost: oh yeah! there you go. – Jungle Hunter Oct 20 '10 at 11:59

Dictionaries are unsortable. Iterate over sorted(mydict.keys()) instead.

share|improve this answer
3  
it is possible also say sorted(mydict) if you prefer. – Tony Veijalainen Oct 20 '10 at 11:42
Right, I keep forgetting about that... – Ignacio Vazquez-Abrams Oct 20 '10 at 11:43
1  
or sorted(mydict.items()) – gnibbler Oct 20 '10 at 11:46

I'm sure that python knows how to compare dates. So:

def sortedDictValues(adict):
 items = adict.items()
 items.sort()
 return [value for key, value in items]
share|improve this answer
Python compares datetime objects without any problems. In this case YYYY-MM-DD strings are also correctly comparable. A problem would be date in format MM/DD/YYYY or DD.MM.YYYY, but not with YYYY-MM-DD. – eumiro Oct 20 '10 at 11:42
1  
The last three lines of your code can be also written as return [value for key, value in sorted(adict.items())] – eumiro Oct 20 '10 at 11:45

since your date strings seem to be in a proper format you could just do:

>>> sorted(mydict.items())         # iteritems in py2k
[('2000-01-01', {'fld_2': 42, 'fld_1': 1}), ('2000-01-02', {'fld_2': 22.17, 'fld_1': 23})]
share|improve this answer

Python 2.7 (released on July 3rd, 2010) supports an ordered dictionary type:

http://www.python.org/download/releases/2.7/

share|improve this answer
ordered dictionary remembers the order of insertion. But blist module has sorteddict pypi.python.org/pypi/blist – Tony Veijalainen Oct 20 '10 at 12:06
but doesn't the order dictionary also have a "sort" function? – Tom Teman Oct 20 '10 at 12:55
If you put it that way, yes. And then it would stay for future use. More natural for me would be to sorteddict. – Tony Veijalainen Oct 21 '10 at 6:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.