mirror of
https://github.com/arthur-pbty/nsi.git
synced 2026-06-03 23:36:19 +02:00
renamed files and exercise 1.2
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import random
|
||||
|
||||
nombre = random.randint(1,100)
|
||||
coup = 0
|
||||
a = None
|
||||
print("Le jeu consiste à deviner un nombre entre 1 et 100 :")
|
||||
|
||||
while a != nombre:
|
||||
coup += 1
|
||||
a = int(input("--> "))
|
||||
if a < nombre:
|
||||
print("trop petit !")
|
||||
elif a > nombre:
|
||||
print("trop grand !")
|
||||
else:
|
||||
print(f"Gagné en {coup} coups !")
|
||||
Reference in New Issue
Block a user