python實現的搶紅包程式碼

來源:互聯網
上載者:User


最近網上出現了各種的搶紅包,支付寶、QQ、微信。其中一種拼手氣紅包,發紅包時使用者輸入一個紅包總金額和待發紅包總數,發布紅包後,其它使用者搶紅包時可以隨機得到不定金額的紅包,RP好的可能搶到幾塊,RP不好時可能只會搶到幾毛,甚至幾分錢。

廢話不說了,下面放出個python實現的發紅包程式。原程式出自某群,我只是稍微修改了一下。

#coding=gbk
import random
import sys

def calRandomValue(total, num):
    total = float(total)
    num = int(num)
    min = 0.01 #基數
    if(num < 1):
        return
    if num == 1:
        print "第%d個人拿到紅包數為:%.2f" %(num, total)
        return
   
    i = 1
    while( i < num ):
        max = total - min*(num- i)
        k = int((num-i)/2)
        if num -i <= 2:
            k = num -i
        max = max/k
        monney = random.randint(int(min*100), int(max*100))
        monney = float(monney)/100
        total = total - monney
        print "第%d個人拿到紅包數為:%.2f, 餘額為: %.2f" %(i, monney, total)
        i += 1
   
    print "第%d個人拿到紅包數為:%.2f, 餘額為: %.2f" %(i, total, 0.0)
if __name__ == "__main__":
    total = raw_input('輸入紅包總金額:')
    num = raw_input('輸入發紅包數量:')
    calRandomValue(total, num)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.