M
Sunil patel
We enjoy all time
Monday, 8 June 2020
Wednesday, 3 June 2020
Sunil ‘sMemory’s
import random
combinations = [1,2,3,.. to 38,39]
while len(combinations) < 195:
combination = sorted(random.sample(range(1, 39), 5))
if combination not in combinations:
combinations.append(combination)
print(combinations)
Subscribe to:
Comments (Atom)
-
import random combinations = [1,2,3,.. to 38,39] while len(combinations) < 195: combination = sorted(random.sample(rang...