How do I select a random element from an array in Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T07:03:17Z http://stackoverflow.com/feeds/question/1058712 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1058712/how-do-i-select-a-random-element-from-an-array-in-python 1 How do I select a random element from an array in Python? Hanno Fietz 2009-06-29T14:42:22Z 2009-06-29T14:55:40Z <p>The first examples that I googled didn't work. This should be trivial, right?</p> http://stackoverflow.com/questions/1058712/how-do-i-select-a-random-element-from-an-array-in-python/1058725#1058725 5 Answer by kotlinski for How do I select a random element from an array in Python? kotlinski 2009-06-29T14:44:32Z 2009-06-29T14:44:32Z <pre><code>import random random.choice([1, 2, 3]) </code></pre> http://stackoverflow.com/questions/1058712/how-do-i-select-a-random-element-from-an-array-in-python/1058727#1058727 11 Answer by eduffy for How do I select a random element from an array in Python? eduffy 2009-06-29T14:44:38Z 2009-06-29T14:44:38Z <pre><code>import random random.choice (mylist) </code></pre> http://stackoverflow.com/questions/1058712/how-do-i-select-a-random-element-from-an-array-in-python/1058764#1058764 4 Answer by Khandelwal for How do I select a random element from an array in Python? Khandelwal 2009-06-29T14:50:57Z 2009-06-29T14:55:40Z <p>Here's the documentation link: <a href="http://docs.python.org/library/random.html#random.choice" rel="nofollow">http://docs.python.org/library/random.html#random.choice</a></p>