vote up 0 vote down star
thelist = ['a','b','c','d']

What's the best way to scramble them in Python?

flag

2  
I think the answer might be random.shuffle. 8-) – RichieHindle Oct 6 at 8:00
hehe, you think? :) – Peter Oct 6 at 8:01
1  
Exact duplicate: stackoverflow.com/questions/473973/… – Greg Hewgill Oct 6 at 8:07

4 Answers

vote up 7 vote down check
>>> import random
>>> thelist = ['a', 'b', 'c', 'd']
>>> random.shuffle(thelist)
>>> thelist
['d', 'a', 'c', 'b']

Your result will (hopefully!) vary.

link|flag
vote up 4 vote down
import random
random.shuffle(thelist)

Note, this shuffles the list in-place.

link|flag
+1 for "in place" . – Aaron Digulla Oct 6 at 8:01
vote up 2 vote down

Use the shuffle function from the random module:

>>> from random import shuffle
>>> thelist = ['a','b','c','d']
>>> shuffle(thelist)
>>> thelist
['c', 'a', 'b', 'd']
link|flag
6  
Hey, how come you got different output to Peter? ;) – Dominic Rodger Oct 6 at 8:02
Who else went straight to the 'Add Comment' button to lambast, before seeing the wink? :P – Dominic Bou-Samra Oct 6 at 10:11
vote up 3 vote down

Use the random.shuffle() function:

random.shuffle(thelist)
link|flag

Your Answer

Get an OpenID
or

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