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.com2009-11-29T22:41:21Zhttp://stackoverflow.com/feeds/question/327191http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/327191/in-python-is-there-a-one-line-pythonic-way-to-get-a-list-of-keys-from-a-dictiona2in python, is there a one line pythonic way to get a list of keys from a dictionary in sorted order?Hugh2008-11-29T05:03:14Z2009-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#3271954Answer by Hugh for in python, is there a one line pythonic way to get a list of keys from a dictionary in sorted order?Hugh2008-11-29T05:06:35Z2008-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#32721016Answer by Dustin for in python, is there a one line pythonic way to get a list of keys from a dictionary in sorted order?Dustin2008-11-29T05:20:37Z2008-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#8562723Answer by odwl for in python, is there a one line pythonic way to get a list of keys from a dictionary in sorted order?odwl2009-05-13T05:54:38Z2009-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>