import random while True: name = input("Enter your name:") enter = input("Enter your choice (rock/paper/scissors/):") actions = ["rock","paper","scissors"] computer = random.choice(actions) score = 0 score2 = 0 print(f"You chose {enter}, computer chose {computer}") print() if computer == enter: print("Both selected same. Its tie.") elif computer == "rock": if enter == "paper": print(f"Paper covers rock. {name} win.") score+=1 elif enter == "scissors": print("Rock breaks scissors. Computer wins.") score2+=1 elif computer == "paper": if enter == "rock": print("Paper covers rock. Computer wins.") score2+=1 elif enter == "scissors": print(f"Scissor cuts paper. {name} win.") score+=1 elif computer == "scissors": if enter == "rock": print(f"Rock breaks scissors. {name} win.") score+=1 elif enter == "paper": print("Scissor cuts paper. computer wins.") score2+=1 print() again = input("Play again? (y/n):") if again == "y": continue elif again == "n": print(f"Computer = {score2}") print(f"{name} = {score}") break