from random import randint cible=randint(1,1000) k=1 n=0 while k<=10 and n!=cible: n=int(input("Saisir un entier naturel entre 1 et 1000")) if n==cible: print("gagné ! en ",k, " coups.") else: if n>cible: print("trop grand") else: print("trop petit") k=k+1 if n!=cible: print("Perdu ! Le nombre mystère était ",cible)