實例如下:
#! /usr/bin/python
# -*- coding: utf-8 -*-
import random
class CDispatch:
def __init__(self,sum,count):
self.sum = sum
self.count=count
#print 'init here sum =',sum,',count =',count
def __del__(self):
pass
#print 'run del the class'
def getListInfo(self):
listInfo=[]
sumMoney = self.sum*100
for num in range(0,self.count):
if(num == self.count -1):
listInfo.append(float('%0.2f'%sumMoney)/100)
break
bigRand=sumMoney+1+num-self.count
#print 'sumMoney=',sumMoney,'num=',num,'self.count=',self.count,'big=',bigRand
try:
a = random.randint(1,int(bigRand))
except:
for i in range(0,num):
print 'listInfo[%d]'%i,'=',listInfo[i]
if num >0:
print 'sumMoney=',sumMoney,'num=',num,'listInfo[num-1]=',listInfo[num-1],'self.count=',self.count,'big=',bigRand
#print 'a=',a
break
sumMoney -=a
listInfo.append(float(a)/100)
return listInfo
for i in range(0,100000):
dispatch = CDispatch(1.05,5)
listGet = dispatch.getListInfo()
print listGet
del dispatch
以上這篇python 實現(xiàn)紅包隨機生成算法的簡單實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
更多文章、技術交流、商務合作、聯(lián)系博主
微信掃碼或搜索:z360901061
微信掃一掃加我為好友
QQ號聯(lián)系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元

