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

I have a list of objects in python and I want to shuffle them. I thought I could use the random.shuffle method, but this seems to fail when the list is of objects. Is there a method for shuffling object or another way around this?

import random

class a:
    foo = "bar"

a1 = a()
a2 = a()
b = [a1,a2]

print random.shuffle(b)

This will fail

share|improve this question
1  
Can you give an example how it fails? random.shuffle should work invariant to the type of the objects in the list. – bayer Jun 10 '09 at 17:01
>>> a1 = a() >>> a2 = a() >>> b = [a1,a2] >>> b [<__main__.a instance at 0xb7df9e6c>, <__main__.a instance at 0xb7df9e2c>] >>> print random.shuffle(b) None – utdiscant Jun 10 '09 at 17:02
it works just find – SilentGhost Jun 10 '09 at 17:08
17  
As stated below, random.shuffle doesn't return a new shuffled list; it shuffles the list in place. So you shouldn't say "print random.shuffle(b)" and should instead do the shuffle on one line and print b on the next line. – Eli Courtwright Jun 10 '09 at 17:09
Oops, you are right Eli. – Nick Dandoulakis Jun 10 '09 at 17:21

4 Answers

up vote 81 down vote accepted

random.shuffle should work. Here's an example, where the objects are lists:

from random import shuffle
x = [[i] for i in range(10)]
shuffle(x)

# print x  gives  [[9], [2], [7], [0], [4], [5], [3], [1], [8], [6]]
# of course your results will vary

Note that shuffle works in place, and returns None.

share|improve this answer
The in place part was what I was missing. Thanks – utdiscant Jun 10 '09 at 17:10
You're welcome. It's a common issue. sort and reverse are also done in place. All of these return None to point this out. – tom10 Jun 10 '09 at 17:18
#!/usr/bin/python3

import random

s=list(range(5))
random.shuffle(s) # << shuffle before print or assignment
print(s)

# print: [2, 4, 1, 3, 0]
share|improve this answer
>>> import random
>>> a = ['hi','world','cat','dog']
>>> random.shuffle(a,random.random)
>>> a
['hi', 'cat', 'dog', 'world']

It works fine for me. Make sure to set the random method.

share|improve this answer
Still does not work for me, see my example code in the edited question. – utdiscant Jun 10 '09 at 17:08

As you learned the in-place shuffling was the problem. I also have problem frequently, and often seem to forget how to copy a list, too. Using sample(a, len(a)) is the solution.

Here's a simple version using random.sample() that returns the shuffled result as a new list.

import random

a = range(5)
b = random.sample(a, len(a))
print a, b, "two list same:", a == b
# print: [0, 1, 2, 3, 4] [2, 1, 3, 4, 0] two list same: False

# sample() allows no duplicates.
# Result can be smaller but not larger than the input.
a = range(555)
b = random.sample(a, len(a))
print "no duplicates:", a == list(set(b))
try:
random.sample(a, len(a) + 1)
except ValueError as e:
print "Nope!", e

# print: no duplicates: True
# print: Nope! sample larger than population
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.