Este grupo redactor ha pasado mucho tiempo buscando para dar soluciones a tu duda, te compartimos la resolución de modo que nuestro deseo es que resulte de mucha apoyo.
Ejemplo: pitón piedra papel tijera
import random
game_list =['Rock','Paper','Scissors']
computer = c =0
command = p =0print("Score: Computer"+str(c)+" Player "+str(p))# the loop
run =Truewhile run:
computer_choice = random.choice(game_list)
command =input("Rock, Paper, Scissors or Quit: ")if command == computer_choice:print("Tie")elif command =='Rock':if computer_choice =='Scissors':print("Player won!")
p +=1else:print("Computer won!")
c +=1elif command =='Paper':if command =='Rock':print("Player won!")
p +=1else:print("Computer won!")
c +=1elif command =='Scissors':if computer_choice =='Paper':print("Player won!")
p +=1else:print("Computer won!")
c +=1elif command =='Quit':breakelse:print("Wrong command! ")print("Player: "+ command)print("Computer: "+ computer_choice)print("")print("Score: Computer "+str(c)+" Player "+str(p))print("")
Si tienes alguna indecisión o capacidad de aumentar nuestro ensayo eres capaz de ejecutar una explicación y con placer lo leeremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)