E D R S I H C RSS

Lotto (rev. 1.1)

ID
Password
Join
Among the lucky, you are the chosen one.
import random

lotto_set = ()
while ( len(lotto_set) < 6 ):
    lotto_set = set([random.randrange(1, 47, 1) for k in range(6)])
    
lotto = list(lotto_set)
lotto.sort()

print lotto


-- 118.45.106.192 2010-10-23 01:11:54
Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2010-10-28 00:33:19
Processing time 0.0125 sec