lotto game

This commit is contained in:
2025-10-13 12:05:46 +02:00
parent 69c2ba21b8
commit 3b56a2bb80
2 changed files with 31 additions and 19 deletions

18
lotto.py Normal file
View File

@@ -0,0 +1,18 @@
import random
nbrDeTirages = int(input("nbr iteration : "))
results = []
for i in range(nbrDeTirages):
randnum = random.randint(1,49)
results.append(randnum)
print(results)
print(results)
print(random)