devine.py

Created by julien-bernon

Created on June 14, 2020

567 Bytes

deviner un nombre


from random import randint

def jeu():

    nombre=randint(1,11)

    reponse=-1

    nb_essai=0

    while reponse!=nombre:

        nb_essai+=1

        reponse=int(input("Votre proposition ? "))

        if reponse<nombre:

            print("C'est plus !")

        elif reponse>nombre:

            print("C'est moins!")

    print("Bravo, vous avez trouvé !")

    print("Nombre d'essais : "+str(nb_essai))



recommencer=1

while recommencer==1:

    jeu()

    print("Voulez-vous recommencer ?")

    recommencer=int(input("Oui = 1 ; Non = 0"))

During your visit to our site, NumWorks needs to install "cookies" or use other technologies to collect data about you in order to:

With the exception of Cookies essential to the operation of the site, NumWorks leaves you the choice: you can accept Cookies for audience measurement by clicking on the "Accept and continue" button, or refuse these Cookies by clicking on the "Continue without accepting" button or by continuing your browsing. You can update your choice at any time by clicking on the link "Manage my cookies" at the bottom of the page. For more information, please consult our cookies policy.