Sagot :
Explications:
Bonjour!
from random import randint
n = int(input("Entrez le nombre maximum : "))
essais= 0
nombre = randint(0, n)
while True:
choix = int(input(f"Entrez un nombre entre 0 et {n} : "))
if choix > n or choix < n:
print(f"Le nombre choisi doit être entre 0 et {n} !")
elif choix > nombre:
print("Le nombre à trouver est plus petit !")
essais += 1
elif choix < nombre:
print("Le nombre à trouver est plus grand !")
essais += 1
elif choix == nombre:
print(f"Bravo ! vous avez trouvé le nombre en {essais} essais !")
break
Bonne journée !