*** empty log message ***

This commit is contained in:
Dave Schuyler 2003-09-03 05:08:33 +00:00
parent 0c2a4f1550
commit 71839729a8

View File

@ -0,0 +1,19 @@
import random
class WeightedChoice:
def __init__(self, listOfLists, weightIndex=0):
t=0
for i in listOfLists:
t+=i[weightIndex]
self.total = t
self.listOfLists = listOfLists
self.weightIndex = weightIndex
def choose(self):
roll = random.randrange(self.total)
weight = self.weightIndex
for i in self.listOfLists:
roll -= i[weight]
if roll <= 0:
return i