Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let's consider this dictionary

>>> test = {'to have': True, 'to get': False, 'having': False}

Imagine

>>> test.random_order()
{'having': False, 'to get': False, 'to have': True}

How can I reorder it randomly? Should I use OrderedDict and random.shuffle? If so, how can I combine them?

share|improve this question
I finally used lists instead of dicts. – Pierre de LESPINAY Jan 9 '12 at 12:59

2 Answers

up vote 3 down vote accepted

Your question does not make sense in a strict sense — a dictionary is a mapping from a set of keys to a set of values. As such, they don't have an order since sets don't have order. The order you see when you print a dictionary is "random" and not to be trusted.

So if you're I would say you should use

items = test.items()
random.shuffle(items)

to get a list of shuffled (key, value) pairs. You can pass those to OrderedDict and that will give you a dictionary where the keys have an order associated with them.

share|improve this answer
I understand the lake of coherence. I think I should use a list instead. – Pierre de LESPINAY Jan 9 '12 at 12:33
1  
Using lists instead of dicts simplified my life on this issue :) Thanks. – Pierre de LESPINAY Jan 9 '12 at 12:55

Just shuffle the key/value pairs (items) and pass them on to OrderedDict:

items = test.items()
random.shuffle(items)
OrderedDict(items)
share|improve this answer
It will not update the dictionary, will it ? random.shuffle() returns nothing – Pierre de LESPINAY Jan 9 '12 at 12:43
Oh yes, that's true, sorry! Fixed it. – Jan Pöschko Jan 9 '12 at 13:05
Thanks for the update – Pierre de LESPINAY Jan 9 '12 at 15:40

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.