up vote 8 down vote favorite
1
share [g+] share [fb]

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

link|improve this question

6  
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 '09 at 14:45
1  
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 '09 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 Sloof Jun 29 '09 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 '09 at 15:18
The proverbial RTFM. – kotlinski Jun 29 '09 at 21:39
show 2 more comments
feedback

3 Answers

up vote 27 down vote accepted
import random
random.choice (mylist)
link|improve this answer
feedback
import random
random.choice([1, 2, 3])
link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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