Feat: QF S49 pour les 2nd
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-12-02 15:32:42 +01:00
parent 6349dfe5d0
commit 0356dcf1aa
14 changed files with 368 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
from random import randint
de = randint(0, 10)
if de > 8:
print(gagné!)
else:
print(perdu)

View File

@@ -0,0 +1,7 @@
from random import randint
de1 = randint(8, 10)
de2 = randint(0, 1)
if de1 > 8:
print(gagné!)
else:
print(perdu)

View File

@@ -0,0 +1,7 @@
from random import randint
de1 = randint(8, 10)
de2 = randint(0, 1)
if de2 > 8:
print(gagné!)
else:
print(perdu)

View File

@@ -0,0 +1,6 @@
from random import randint
de = randint(0, 100)
if de > 75:
print(gagné!)
else:
print(perdu)