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

This is my list:

biglist = [ {'title':'U2','link':'u2.com'}, {'title':'beatles','link':'beatles.com'} ]
print random.shuffle(biglist)

that doesn't work! It returns none.

link|improve this question

feedback

1 Answer

up vote 13 down vote accepted

random.shuffle shuffles the list, it does not return a new list. So check biglist, not the result of random.shuffle.

Documentation for the random module: http://docs.python.org/library/random.html

link|improve this answer
1  
This is a really common mistake, I used to do it a lot with .reverse() and .sort() – Kimvais Oct 7 '09 at 8:09
Me too, hooray for reversed() and sorted(). – Greg Hewgill Oct 8 '09 at 0:27
feedback

Your Answer

 
or
required, but never shown

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