码迷,mamicode.com
首页 > 其他好文 > 详细

娱乐:不重复的机选大乐透

时间:2019-10-25 23:20:09      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:==   append   not   dom   style   sdi   insert   nbsp   while   

import random

num = (input(输入需要购买的彩票数:)).strip()
if num and num.isdigit() and int(num) >0:
    l2 = []
    for i in range(int(num)):
        l = []
        while len(l) < 5:
            b = random.randint(1, 35)
            b = str(b).zfill(2)
            if b not in l:
                l.append(b)

        l.sort()
        b = random.randint(1, 12)
        b = str(b).zfill(2)
        l.append(b)

        while len(l) < 7:
            b = random.randint(1, 2)
            b = str(b).zfill(2)
            if int(b) == int(l[5]):
                continue
            elif int(b) > int(l[5]):
                l.append(b)
            else:
                l.insert(5, b)
        if l not in l2:
            l2.append(l)

        qian = l2[i][:5]
        hou = l2[i][-2:]
        print(第%s注彩票,前区:%s,后区:%s%(i,qian,hou))
else:
    print(输入错误)

 

娱乐:不重复的机选大乐透

标签:==   append   not   dom   style   sdi   insert   nbsp   while   

原文地址:https://www.cnblogs.com/shengqi/p/11741240.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!