python 随机生成大乐透号码

python 随机生成大乐透号码 自己写来买彩票用的,如下:


自己写来买彩票用的,如下:

import random
 
L1 = [ i+1 for i in range(35)]
L2 = [ i+1 for i in range(12)]
 
def act(N,*arg):
	res=list(arg)
	random.shuffle(res)
	l=[]
	j=0
	while j

你可能感兴趣的:(python 随机生成大乐透号码)