The list sort method is a modifier function that returns None.
So if I want to iterate through all of the keys in a dictionary I cannot do:
for k in somedictionary.keys().sort(): dosomething()
instead, i must:
keys = somedictionary.keys() keys.sort() for k in keys: dosomething()
Is there a pretty way to iterate through these keys in sorted order without having to break it up in to multiple steps?