Can I answer my own question?
I have just discovered the handy function "sorted" which does exactly what I was looking for.
for k in sorted(somedictionary.keys()): dosomething()
It shows up in http://stackoverflow.com/questions/157424/python-25-dictionary-2-key-sort
