python 实现红包随机生成算法的简单实例

作者:jingxian 时间:2022-07-07 17:32:48 

实例如下:


</pre><pre name="code" class="python">#! /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
标签:红包,随机,算法
0
投稿

猜你喜欢

  • 跟老齐学Python之复习if语句

    2022-03-20 19:33:20
  • 将django项目部署到centos的踩坑实战

    2021-05-14 06:00:22
  • python爬虫开发之使用python爬虫库requests,urllib与今日头条搜索功能爬取搜索内容实例

    2022-01-05 19:39:44
  • Python中如何添加自定义模块

    2023-06-09 23:24:38
  • 使用基于Python的Tornado框架的HTTP客户端的教程

    2023-05-15 06:50:43
  • ASP页面内VBScript和JScript的交互

    2007-09-11 13:49:00
  • python实现简单通讯录管理系统

    2021-05-02 10:41:23
  • Php多进程实现代码

    2023-10-11 09:23:14
  • 如何计算ASP页面的加载时间/载入时间?

    2009-11-25 20:10:00
  • Python pandas之多级索引取值详解

    2022-05-09 14:12:31
  • go语言静态库的编译和使用方法

    2024-05-09 09:40:05
  • Python命令行click参数用法解析

    2023-07-30 14:01:20
  • 基于MATLAB和Python实现MFCC特征参数提取

    2023-01-29 07:37:53
  • 详解Python IO编程

    2021-06-26 08:40:48
  • python实操练习案例(六)

    2021-01-06 08:09:23
  • JS实现单击输入框弹出选择框效果完整实例

    2024-04-22 22:33:02
  • Oracle外键不加索引引起死锁示例

    2024-01-20 20:10:08
  • python中实现词云图的示例

    2021-08-04 22:11:33
  • Javascript操作表单之间的数据传递

    2007-10-25 12:58:00
  • python3在各种服务器环境中安装配置过程

    2021-10-27 22:49:55
  • asp之家 网络编程 m.aspxhome.com