Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

new to Python and had a question about dictionaries. I have a dictionary that I declared in a particular order and want to keep it in that order all the time. The keys/values can't really be kept in order based on their value, I just want it in the order that I declared it.

So if I have the dictionary:

d = {'ac':33, 'gw':20, 'ap':102, 'za':321, 'bs':10}

It isn't in that order if I view it or iterate through it, is there any way to make sure Python will keep the explicit order that I declared the keys/values in?

Using Python 2.6

share|improve this question
3  
Can you clarify why you want to keep this "in order"? – Peter Hansen Dec 8 '09 at 16:01
I agree with Peter Hansen here. A dictionary is not meant to store order, but rather to store key/value pairs and have different access/add times to normal lists. – Zoran Pavlovic Jan 28 at 9:24

4 Answers

up vote 15 down vote accepted

You need an ordered dictionary, you can find an example of one here

share|improve this answer
12  
You can also upgrade to python 2.7 when it comes out, the OrderedDict class is being added as a part of PEP 372 docs.python.org/dev/whatsnew/2.7.html – Dana the Sane Dec 8 '09 at 15:59

Dictionaries will use an order that makes searching efficient, and you cant change that,

You could just use a list of objects (a 2 element tuple in a simple case, or even a class), and append items to the end. You can then use linear search to find items in it.

Alternatively you could create or use a different data structure created with the intention of maintaining order.

share|improve this answer

I had a similar problem when developing a Django project. I couldn't use OrderedDict, because I was running an old version of python, so the simple solution was to use Django's SortedDict class:

https://code.djangoproject.com/wiki/SortedDict

share|improve this answer

Generally, you can design a class that behaves like a dictionary, mainly be implementing the methods __contains__, __getitem__, __delitem__, __setitem__ and some more. That class can have any behaviour you like, for example prividing a sorted iterator over the keys ...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.