随机生成彩票号码,嘿嘿,随机生成彩票号码,,xuanhao.pyim


xuanhao.py

import randomdef getResultStr(totalCount, resultCount):    elements = [x + 1 for x in range(totalCount)]    retStr = ''    for i in range(resultCount):        res = elements[random.randint(0, len(elements)-1)]        elements.remove(res)        retStr += ' ' + str(res)    return retStr

shuangseqiu.py

import xuanhaoprint xuanhao.getResultStr(33, 6)print xuanhao.getResultStr(16, 1)

daletou.py

import xuanhaoprint xuanhao.getResultStr(35, 5)print xuanhao.getResultStr(12, 2)

评论关闭