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

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?

share|improve this question

4 Answers

up vote 402 down vote accepted
foo = ['a', 'b', 'c', 'd', 'e']
from random import choice
print choice(foo)
share|improve this answer
102  
This is why I love python. – Agos Mar 2 '10 at 14:56
21  
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
49  
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
20  
@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
15  
@DavidJames there is also random.sample() in python. For example : random.sample(some_list, 5) will return list of 5 elements where every element is randomly chosen from some_list. – Saša Šijak Mar 28 '12 at 12:07
show 6 more comments

In case you also need the index:

foo = ['a', 'b', 'c', 'd', 'e']
from random import randrange
random_index = randrange(0,len(foo))
print foo[random_index]
share|improve this answer
1  
Please, never actually do this. – fletom Oct 10 '12 at 14:42
17  
@fletom you might want to be more elaborate if you intend your comment to be helpful – 0sh Oct 29 '12 at 19:40
I think what he meant was, there is a choice function in the Python Library for a reason. I'm sure Guido and the community didn't just chose the first approach that came to their mind, but used one that is optimal for a generic use case. Of course there might be some special problems that require a custom implementation(eg. in real-time systems, in a low-memory enviroment, etc.), but usually that isn't the case. – Richard Otvos Mar 22 at 12:50
I would prefer random.choice(list(enumerate(foo))) for this.. – wim Apr 12 at 4:53

if you need the index just use:

import random
foo = ['a', 'b', 'c', 'd', 'e']
print int(random.random() * len(foo))
print foo[int(random.random() * len(foo))]

random.choice does the same:)

share|improve this answer
1  
random.choice() does not do the same; I suspect it significantly less biased. – tc. Mar 22 at 23:32
1  
@tc. Actually, it does do essentially the same. Implementation of random.choice(self, seq) is return seq[int(self.random() * len(seq))]. – wim Apr 12 at 4:56
@wim That's a little disappointing, but the very disappointing thing is that's also the definition of randrange() which means e.g. random.SystemRandom().randrange(3<<51) exhibits significant bias. Sigh... – tc. Apr 13 at 23:55

I propose a script for removing randomly picked up items off a list untill it is empty:

Maitain a set and remove randomly picked up element (with choice) untill list is empty.

s=set(range(1,6))
import random

while len(s)>0:
  s.remove(random.choice(list(s)))
  print(s)

Three run give three different annswers

>>> 
set([1, 3, 4, 5])
set([3, 4, 5])
set([3, 4])
set([4])
set([])
>>> 
set([1, 2, 3, 5])
set([2, 3, 5])
set([2, 3])
set([2])
set([])

>>> 
set([1, 2, 3, 5])
set([1, 2, 3])
set([1, 2])
set([1])
set([])
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.