Most viewed recipes tagged "choice"http://code.activestate.com/recipes/tags/choice/views/2011-06-14T17:46:41-07:00ActiveState Code RecipesPick random elements from a predefined list of choices (Python) 2011-06-14T17:46:41-07:00Patrick Dobbshttp://code.activestate.com/recipes/users/4177984/http://code.activestate.com/recipes/577754-pick-random-elements-from-a-predefined-list-of-cho/ <p style="color: grey"> Python recipe 577754 by <a href="/recipes/users/4177984/">Patrick Dobbs</a> (<a href="/recipes/tags/choice/">choice</a>, <a href="/recipes/tags/random/">random</a>, <a href="/recipes/tags/selection/">selection</a>). </p> <p>This (quick but strangely satisfying) recipe combines the use of random.choice with functools.partial from the standard library. It is a factory function returning random.choice pre-filled with its sequence of options.</p>