in python, is there a one line pythonic way to get a list of keys from a dictionary in sorted order? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:41:21Z http://stackoverflow.com/feeds/question/327191 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/327191/in-python-is-there-a-one-line-pythonic-way-to-get-a-list-of-keys-from-a-dictiona 2 in python, is there a one line pythonic way to get a list of keys from a dictionary in sorted order? Hugh 2008-11-29T05:03:14Z 2009-05-13T06:56:03Z <p>The list sort method is a modifier function that returns None.</p> <p>So if I want to iterate through all of the keys in a dictionary I cannot do:</p> <pre> for k in somedictionary.keys().sort(): dosomething() </pre> <p>instead, i must:</p> <pre> keys = somedictionary.keys() keys.sort() for k in keys: dosomething() </pre> <p>Is there a pretty way to iterate through these keys in sorted order without having to break it up in to multiple steps?</p> http://stackoverflow.com/questions/327191/in-python-is-there-a-one-line-pythonic-way-to-get-a-list-of-keys-from-a-dictiona/327195#327195 4 Answer by Hugh for in python, is there a one line pythonic way to get a list of keys from a dictionary in sorted order? Hugh 2008-11-29T05:06:35Z 2008-11-29T06:15:48Z <p>Can I answer my own question?</p> <p>I have just discovered the handy function "sorted" which does exactly what I was looking for.</p> <pre> for k in sorted(somedictionary.keys()): dosomething() </pre> <p>It shows up in <a href="http://stackoverflow.com/questions/157424/python-25-dictionary-2-key-sort">http://stackoverflow.com/questions/157424/python-25-dictionary-2-key-sort</a></p> http://stackoverflow.com/questions/327191/in-python-is-there-a-one-line-pythonic-way-to-get-a-list-of-keys-from-a-dictiona/327210#327210 16 Answer by Dustin for in python, is there a one line pythonic way to get a list of keys from a dictionary in sorted order? Dustin 2008-11-29T05:20:37Z 2008-11-29T05:20:37Z <pre><code>for k in sorted(somedictionary.keys()): doSomething(k) </code></pre> <p>Note that you can also get all of the keys and values sorted by keys like this:</p> <pre><code>for k, v in sorted(somedictionary.iteritems()): doSomething(k, v) </code></pre> http://stackoverflow.com/questions/327191/in-python-is-there-a-one-line-pythonic-way-to-get-a-list-of-keys-from-a-dictiona/856272#856272 3 Answer by odwl for in python, is there a one line pythonic way to get a list of keys from a dictionary in sorted order? odwl 2009-05-13T05:54:38Z 2009-05-13T05:54:38Z <p>Actually, .keys() is not necessary:</p> <pre><code>for k in sorted(somedictionary): doSomething(k) </code></pre> <p>or </p> <pre><code>[doSomethinc(k) for k in sorted(somedict)] </code></pre>