Feat: QF S49 pour les 2nd
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
6
2nd/Questions_flashs/P2/code/49-1.py
Normal file
6
2nd/Questions_flashs/P2/code/49-1.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from random import randint
|
||||
de = randint(0, 10)
|
||||
if de > 8:
|
||||
print(gagné!)
|
||||
else:
|
||||
print(perdu)
|
7
2nd/Questions_flashs/P2/code/49-2.py
Normal file
7
2nd/Questions_flashs/P2/code/49-2.py
Normal 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)
|
7
2nd/Questions_flashs/P2/code/49-3.py
Normal file
7
2nd/Questions_flashs/P2/code/49-3.py
Normal 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)
|
6
2nd/Questions_flashs/P2/code/49-4.py
Normal file
6
2nd/Questions_flashs/P2/code/49-4.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from random import randint
|
||||
de = randint(0, 100)
|
||||
if de > 75:
|
||||
print(gagné!)
|
||||
else:
|
||||
print(perdu)
|
Reference in New Issue
Block a user