vote up 1 vote down star

The first examples that I googled didn't work. This should be trivial, right?

flag

5  
Let me guess. It didn't work because it was blue and you needed a green one? Seriously, Show us the code and error message. – unbeknown Jun 29 at 14:45
It didn't work mostly because the google results were very confused Q&A exchanges or examples for some specific library. I thought there should be a straightforward canonical answer at the top of the result list. – Hanno Fietz Jun 29 at 14:49
4  
This was in my first hit: docs.python.org/library/random.html#module-random/… -- random.choice(seq)¶ Return a random element from the non-empty sequence seq. – Daniel Jun 29 at 14:52
Many times looking in the library can be more helpful. Getting the documentation for the random module would have worked. It does take some time to know where to look, but for anything involving "random" check the random module first. – Kathy Van Stone Jun 29 at 15:18
The proverbial RTFM. – kotlinski Jun 29 at 21:39

3 Answers

vote up 11 vote down check
import random
random.choice (mylist)
link|flag
vote up 4 vote down

Here's the documentation link: http://docs.python.org/library/random.html#random.choice

link|flag
vote up 5 vote down
import random
random.choice([1, 2, 3])
link|flag

Your Answer

Get an OpenID
or

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