39 lines
971 B
Python
39 lines
971 B
Python
from random import *
|
|
|
|
print("Bonjour bienvenu dans le jeu: devinette d'un nombre")
|
|
print("Je choisis un nombre entre 1 et 20 et")
|
|
print("Vous avez 6 tentatives pour trouver le nombre que j'aurai choisi")
|
|
|
|
# L'ordinateur fait son choix
|
|
choix = randint(1,20)
|
|
|
|
print("Quel est votre première tentative?")
|
|
tentative = input()
|
|
# On transforme le réponse en un entier
|
|
tentative = int(tentative)
|
|
|
|
nbr_tentative = 1
|
|
|
|
while nbr_tentative <= 6:
|
|
if tentative == choix:
|
|
print("Bravo vous avez trouvé le bon chiffre")
|
|
break
|
|
|
|
elif tentative > choix:
|
|
print("Mon chiffre est plus petit")
|
|
elif tentative < choix:
|
|
print("Mon chiffre est plus grand")
|
|
|
|
nbr_tentative = nbr_tentative + 1
|
|
# On redemande le choix de l'utilisateur
|
|
print("Quel est votre nouvelle tentative?")
|
|
tentative = input()
|
|
# On transforme le réponse en un entier
|
|
tentative = int(tentative)
|
|
|
|
if tentative != choix:
|
|
print("Vous avez perdu")
|
|
print("Mon chiffre était: ", choix)
|
|
|
|
|