Here is my code in python This is the whole program in gist.
import random
list= [ "Rock", "Paper", "Scissors" ]
my_decision = random.choice(list)
while True:
game = input("Let's play Rock-Paper-Scissors Game! Please enter your decision: ")
game.capitalize()
this method don't work. When i enter rock or paper or scissors, it just failed to capitalize the first letter.