vote up 3 vote down star

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?

flag

75% accept rate

1 Answer

vote up 25 vote down check
foo = ['a', 'b', 'c', 'd', 'e']
from random import choice
print choice(foo)
link|flag

Your Answer

Get an OpenID
or

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