Skip to content </textarea> '"` All gists GitHub Sign up for a GitHub account Sign in lykkin / gist:b4d0c5610e664485dad4 Last active Aug 29, 2015 /.container /.repohead Code Revisions 4 Embed HTTPS Subversion You can clone with </textarea> '"` HTTPS or </textarea> '"` Subversion . Download ZIP /.repository-sidebar weighted choice Raw gistfile1.py from random import random class thing : def __init__ ( self , value , weight = 1 ): self .value = value self .weight = weight def __str__ ( self ): return str ( self .value) + ' ' + str ( self .weight) things = [thing(x) for x in range ( 10 )] def pick (): total_weight = sum ( map ( lambda thing : thing.weight, things)) choice_weight = total_w...