vote up 3 vote down star

What's the easiest way to shuffle an array with python?

flag

78% accept rate

2 Answers

vote up 20 vote down check
import random
random.shuffle(array)
link|flag
Beat me by 47 seconds. – Douglas Leeder Jan 23 at 18:38
Just be careful, shuffle was broken in earlier numpy versions (I think this still applies to the current Debian "stable"). If I remember correctly the bug only arose when shuffle was used on a >1d numpy array. – nikow Jan 23 at 21:29
This deserves an letmegooglethatforyou.com/?q=python+shuffle/…. Oh, look it's the second hit. – S.Lott Jan 23 at 21:59
@nikow: this has nothing to do with numpy. Just regular Python. – David Jan 23 at 22:06
@David: Oh right, sorry, I missed that. I got almost very badly bitten by this numpy bug, so that stuck to my mind. – nikow Jan 24 at 22:05
vote up 9 vote down
import random
random.shuffle(array)
link|flag
1  
haha don't you hate that? Been beaten out a few times myself. – Triptych Jan 23 at 18:50
lol, me too. Great minds think alike. +1 – David Jan 23 at 19:00

Your Answer

Get an OpenID
or

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