vote up 4 vote down star

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.

flag

Unordered means order is none of your business. It does NOT mean the order is inconsistent. – S.Lott Feb 9 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 at 9:25

5 Answers

vote up 33 vote down check

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|flag
+1 Just a few seconds late :) – Stefano Driussi Feb 8 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 at 6:05
vote up 8 vote down

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

-Einstein

link|flag
... what does that have to do with anything? – Aaron Maenpaa Feb 8 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 at 21:16
vote up 4 vote down

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|flag
vote up 2 vote down

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|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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