使用Python生成双色球号码
Posted 尘世风
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Python生成双色球号码相关的知识,希望对你有一定的参考价值。
说来也是巧,今天和一个朋友聊天,说他运气不错应该买彩票,于是就想到了双色球的规则,就写了几行代码产生双色球号码,代码如下:
import random,time def process_int(x): ‘‘‘这个函数用来把int类型转成字符串‘‘‘ x = str(x) if len(x)==1: #如果是个位数前面加0 x=‘0‘+x return x def tickets(num): ‘‘‘ :num 产生几条 这个函数是用来随机产生双色球号码的, 每次把产生的号码保存在当天日期的文件中 ‘‘‘ red_nums = list(map(process_int,range(1,34))) #红球,范围在1-33,使用map把每个元素传给process_int转成字符串 blue_nums = list(map(process_int,range(1,17))) #蓝球,范围在1-16 res_list = []#保存所有的结果,用来写到文件里面 for i in range(1,num+1): red_num = random.sample(red_nums, 6) blue_num = random.sample(blue_nums, 1) res = red_num+blue_num format_str = ‘第%s个:红球:%s 蓝球 %s‘%(i,‘ , ‘.join(res[:7]),res[-1]) res_list.append(format_str+‘\n‘) print(format_str) cur_time = time.strftime(‘%Y.%m.%d %H_%M_%S‘) with open(‘%s.txt‘%cur_time,‘w‘,encoding=‘utf-8‘) as fw: fw.writelines(res_list) if __name__ ==‘__main__‘: nums = input(‘请输入你要产生多少条双色球号码:‘).strip() tickets(int(nums))
以上是关于使用Python生成双色球号码的主要内容,如果未能解决你的问题,请参考以下文章
python3 - 写一个生成双色球号码的一个程序,生成的号码写到文件里面
java基础:随机生成一组双色球号码(6个红色号码在前,1个蓝色号码在后) (红球号码范围 1~33,蓝色号码 1~16)(需要去重)