Skip to content

Instantly share code, notes, and snippets.

@mccutchen
Created April 4, 2015 16:13
Show Gist options
  • Select an option

  • Save mccutchen/d0a624ebff6ed82bf768 to your computer and use it in GitHub Desktop.

Select an option

Save mccutchen/d0a624ebff6ed82bf768 to your computer and use it in GitHub Desktop.
def weighted_choice(choices):
# http://stackoverflow.com/a/3679747/151221
total = sum(w for c, w in choices)
r = random.uniform(0, total)
for c, w in choices:
r -= w
if r <= 0:
return c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment