6. Exercise: Paper, Scissors, Stone game
if human== "paper" and computer == "scissors":
print("You lose")
elif human== "paper" and computer == "stone":
print("You win")
elif human== "paper" and computer == "paper":
print("Draw")
elif human== "scissors" and computer == "paper":
print("You win")
elif human== "scissors" and computer == "stone":
print("You lose")
elif human== "scissors" and computer == "scissors":
print("Draw")
elif human== "stone" and computer == "scissors":
print("You win")
elif human== "stone" and computer == "paper":
print("You lose")
elif human== "stone" and computer == "stone":
print("Draw")Last updated