up vote 6 down vote favorite
share [g+] share [fb]

Here is the dictionary I have

propertyList = {
	"id":			"int",
	"name":			"char(40)",

	"team":			"int",
	"realOwner":	"int",

	"x":			"int",
	"y":			"int",

	"description":	"char(255)",

	"port":			"bool",
	"secret":		"bool",
	"dead":			"bool",
	"nomadic":		"bool",

	"population":	"int",
	"slaves":		"int",
}

But when I print it out with "\n".join(myDict) I get this

name
nomadic
dead
port
realOwner
secret
slaves
team
y
x
population
id
description

I know that a dictionary is unordered but it comes out the same every time and I've no idea why.

link|improve this question

3  
Unordered means order is none of your business. It does NOT mean the order is inconsistent. – S.Lott Feb 9 '09 at 0:11
@S. Lott: Precisely. That's what I've been taught on my CS course - 'the unordered collections will always have some order, unordered means that we should not rely on it' – Abgan Feb 9 '09 at 9:25
more precise: The ordering of python dictionaries is arbitary but deterministic (according to the python spec). Where deterministic means it will always behave the same way. – Philip Daubmeier Mar 23 '10 at 0:47
feedback

5 Answers

up vote 39 down vote accepted

The real question should be “why not?” … an unordered dictionary is most probably implemented as a hash table (in fact, the Python documentation states this outright) where the order of elements is well-defined but not immediately obvious. Your observations match the rules of a hash table perfectly: apparent arbitrary, but constant order.

link|improve this answer
+1 Just a few seconds late :) – Stefano Driussi Feb 8 '09 at 18:07
It's well worth reading a comment from python's dictionary source file; I've already posted it in a stackoverflow post about "the best comment you've ever seen": is.gd/iSyN – llimllib Feb 9 '09 at 6:05
feedback

The definition of insanity is doing the same thing over and over again and expecting different results

-Einstein

link|improve this answer
... what does that have to do with anything? – Aaron Maenpaa Feb 8 '09 at 19:52
I think the point is that he's doing the same thing on a deterministic machine and getting the same results .. and that this should not be surprising. – John Fouhy Feb 8 '09 at 21:16
feedback

The specification for the built-in dictionary type disclaims any preservation of order, it is best to think of a dictionary as an unordered set of key: value pairs...

You may want to check the ordereddict module, is an implementation of an ordered dictionary with Key Insertion Order.

link|improve this answer
feedback

The only thing about dictionary ordering you can rely on is that the order will remain the same if there are no modifications to the dictionary; e.g., iterating over a dictionary twice without modifying it will result in the same sequence of keys. However, though the order of Python dictionaries is deterministic, it can be influenced by factors such as the order of insertions and removals, so equal dictionaries can end up with different orderings:

>>> {1: 0, 2: 0}, {2: 0, 1: 0}
({1: 0, 2: 0}, {1: 0, 2: 0})
>>> {1: 0, 9: 0}, {9: 0, 1: 0}
({1: 0, 9: 0}, {9: 0, 1: 0})
link|improve this answer
feedback

But if you are interested in order this is not the data structure that you should be looking for. Dictionary is an unordered collection of items. List and Tuples preserve order.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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