up vote 10 down vote favorite
2
share [g+] share [fb]

Dictionaries unlike lists are not ordered (and do not have the 'sort' attribute). Therefore, you can not rely on getting the items in the same order when first added.

What is the easiest way to loop through a dictionary containing strings as the key value and retrieving them in ascending order by key?

For example, you had this:

d = {'b' : 'this is b', 'a': 'this is a' , 'c' : 'this is c'}

I want to print the associated values in the following sequence sorted by key:

this is a
this is b
this is c
link|improve this question

feedback

7 Answers

Or shorter,

for key, value in sorted(d.items()):
    print value
link|improve this answer
not just sorted - avoids the lookups – Blair Conrad Sep 10 '08 at 20:13
what exactly do you mean by "avoids the lookups"? does it result in better performance? – Ray Vega Sep 11 '08 at 23:41
1  
@Ray: yes, using "key, value" in the for loop avoids having to do the hash table lookup of d[key] for every item in the dictionary. I believe the above solution will be faster, but you'd have to measure it on your system and data set to be sure. – Greg Hewgill Sep 12 '08 at 9:54
feedback

Do you mean that you need the values sorted by the value of the key? In that case, this should do it:

for key in sorted(d):
    print d[key]

EDIT: changed to use sorted(d) instead of sorted(d.keys()), thanks Eli!

link|improve this answer
1  
You can actually just say "for key in sorted(d):" without having to say "d.keys()" since iterating over a dictionary just iterates over its keys. – Eli Courtwright Sep 10 '08 at 20:28
feedback

This snippet will do so. If you're going to do it frequently, you might want to make a 'sortkeys' method or somesuch to make it easier on the eyes.

keys = list(d.keys())
keys.sort()
for key in keys:
    print d[key]

Edit: dF's solution is better -- I forgot all about sorted().

link|improve this answer
Yes, but sorted isn't available in older python (pre 2.4), so this idiom is still useful. – jmanning2k Sep 10 '08 at 21:03
feedback
>>> d = {'b' : 'this is b', 'a': 'this is a' , 'c' : 'this is c'}
>>> for k,v in sorted(d.items()):
...     print v, k
... 
this is a a
this is b b
this is c c
link|improve this answer
feedback
for key in sorted(d):
  print d[key]
link|improve this answer
feedback

You can also sort a dictionary by value and control the sort order:

import operator

d = {'b' : 'this is 3', 'a': 'this is 2' , 'c' : 'this is 1'}

for key, value in sorted(d.iteritems(), key=operator.itemgetter(1), reverse=True):
    print key, " ", value

Output:
b this is 3
a this is 2
c this is 1

link|improve this answer
feedback
d = {'b' : 'this is b', 'a': 'this is a' , 'c' : 'this is c'}
ks = d.keys()
ks.sort()
for k in ks:
    print "this is " + k
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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