Let's say, as an example, I have the following list:

foo = ['a', 'b', 'c', 'd', 'e']

What is the best way to retrieve an item at random from this list?

link|improve this question

feedback

1 Answer

up vote 188 down vote accepted
foo = ['a', 'b', 'c', 'd', 'e']
from random import choice
print choice(foo)
link|improve this answer
51  
This is why I love python. – Agos Mar 2 '10 at 14:56
@Agos, indeed. +1 – Ory Band Mar 22 '11 at 12:08
8  
This is why you love Python? I'm not a fan of the fact that the function is named choice. 'Choice' implies intent. Randomness does not imply intent; quite the opposite. Ruby used to have a similar method (choice) but it is now deprecated in favor of sample, which is closer to what a statistician would say in common conversation. – David James Aug 18 '11 at 4:54
16  
Well, in idiomatic Python you would do import random and then random.choice(foo), which in my opinion is more clear than choice or sample. – thedayturns Aug 31 '11 at 4:18
9  
@DavidJames Actually, sample implies and returns a population (more than one item) from a pool of data. choice implies selecting only one random item. – aus Dec 7 '11 at 22:19
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

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