A sorting problem
Thursday, April 12th, 2007Here’s the situation.
I have a list of known field names.
specific_order = ['id', 'age', 'zzyzx', 'bar', 'spam_eggs']
That list is in the order that I want the resulting data displayed in. The dataset is a simple dictionary where the items in the specific_order list are the keys.
However, in each dataset there is the possibility that derived [...]