shifoumi.py

Created by florian-allard

Created on March 11, 2021

729 Bytes

Jeu du Pierre-Feuille-Ciseaux


from random import choice

choix_ordi = choice(["Pierre","Feuille","Ciseaux"])

print(""" 1 pour "Pierre" \n 2 pour "Feuille" \n 3 pour "Ciseaux" \n""")
choix_joueur = int(input("Choix du joueur : "))

if choix_joueur == 1:
  choix_joueur = "Pierre"
elif choix_joueur == 2:
  choix_joueur = "Feuille"
else:
  choix_joueur = "Ciseaux"
  
if choix_ordi == choix_joueur:
  print("Egalité, aucun gagnant.")
elif choix_ordi == "Pierre" and choix_joueur == "Feuille":
  print("Le joueur a gagné !")
elif choix_ordi == "Feuille" and choix_joueur == "Ciseaux":
  print("Le joueur a gagné !")
elif choix_ordi == "Ciseaux" and choix_joueur == "Pierre":
  print("Le joueur a gagné !")
else:
  print("Le joueur a perdu.")

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.