jeudemains.py

Created by florian-allard

Created on March 10, 2021

815 Bytes

Jeu de mains, jeu de vilains. Jeu inspiré d’un jeu présenté dans l’Encyclopédie du Savoir Relatif et Absolu, de Bernard Werber.


from random import randint

score_ordi = 0
score_joueur = 0

choix_ordi = randint(1,5)
choix_joueur = int(input("Nombre de doigts : "))

print("")
print("Choix Joueur :",choix_joueur)
print("Choix Ordi :",choix_ordi)
print("")

if choix_joueur == choix_ordi - 1:
  print("Joueur gagne")
  score_joueur = score_joueur + (choix_ordi + choix_joueur)
elif choix_ordi == choix_joueur - 1:
  print("Ordi gagne")
  score_ordi = score_ordi + (choix_ordi + choix_joueur)

elif choix_joueur > choix_ordi:
  print("Joueur gagne")
  score_joueur = score_joueur + (choix_joueur - choix_ordi)
elif choix_ordi > choix_joueur:
  print("Ordi gagne")
  score_ordi = score_ordi + (choix_ordi - choix_joueur)
else:
  print("Egalité")

print("")
print("Score Joueur : ",score_joueur)
print("Score Ordi : ",score_ordi)

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.