I'm building a game of "Rock, Paper, Scissors" and trying to make an "if statement" so that the game doesn't crash due to and invalid input.
I tried something like this:
Choices = input("Enter Rock, Paper or Scissors: ")
if (Choices != "Rock, Paper, Scissors"):
print ("Please enter proper choice.")
How can I get the player to pick one of the three without this statement showing up? i.e. Player picks Rock and because it's not Paper or Scissors it prints "Please enter proper choice."