show/hide this revision's text 3 added code

You want to give each object a weight. The bigger the weight the more likely it will happen. More precisely probx =weight/sum_all_weights.

Then generate a random number in the range 0 to sum_all_weights and map it to each object.

This code allows you to generate a random index and it is mapped when the object is created for speed. If all of your sets of objects have the same distribution then you can get by with only one RandomIndex object.

import random

class RandomObjectRandomIndex:
    def __init__(self, olist , wlist):
        self._data = olist[:]
        self._wi=[]
        s=0
        self._rsize=sum(wlist)-1
        self._m={}
        i=0
        s=wlist[i]
        for i n in range(len(wlist))range(self._rsize+1):
            if n == s:
                i+=1
                s+=wlist[i]
            self._wi.append(s)
        self._rsize=s

    self._m[n]=i    

    def GetRandomObject(self)i(self):
        rn=random.randint(0,self._rsize-1rn=random.randint(0,self._rsize)
        s=0
        for i in self._wi:
            if rn < i:
                break;
            s+=1

        return self._data[sself._m[rn]


sx=[1,2,3,4]


# list of objects
wx=[10,50,1,3wx=[1,10,100,1000] #weight list
of weights

ro=RandomObject(sx,wxri=RandomIndex(wx)

cnt=[0,0,0,0]

for i in range(100)range(1000):
    print(ro.GetRandomObject()cnt[ri.i()] +=1  #keep track of number of times each index was generated

print(cnt)
show/hide this revision's text 2 added 635 characters in body

You want to give each object a weight. The bigger the weight the more likely it will happen. More precisely probx =weight/sum_all_weights.

Then generate a random number in the range 0 to sum_all_weights and map it to each object.

import random

class RandomObject:
    def __init__(self, olist , wlist):
        self._data = olist[:]
        self._wi=[]
        s=0
        for i in range(len(wlist)):
            s+=wlist[i]
            self._wi.append(s)
        self._rsize=s

    def GetRandomObject(self):
        rn=random.randint(0,self._rsize-1)
        s=0
        for i in self._wi:
            if rn < i:
                break;
            s+=1

        return self._data[s]



sx=[1,2,3,4]    # list of objects
wx=[10,50,1,3]  # list of weights

ro=RandomObject(sx,wx)


for i in range(100):
    print(ro.GetRandomObject())
show/hide this revision's text 1

You want to give each object a weight. The bigger the weight the more likely it will happen. More precisely probx =weight/sum_all_weights.

Then generate a random number in the range 0 to sum_all_weights and map it to each object.