So i tried making a rock paper scissors game but some if statements are not working. code was written in python.
Is there something preventing the if statements ffrom running? or s there another problem
I tried a bunch of little changes but none of them work
code:
import random
moves = ('rock', 'paper', 'scissors')
while True:
    print("rock, paper, scissors. Go! ")
  
    userInput = input("Choose your move: ")
  
    botInput = random.choice(moves)
    if userInput == botInput:
        print(userInput + " VS " + botInput)
        print("DRAW")
    if userInput == "paper" and botInput == "rock":
        print(userInput + " VS " + botInput)
        print("Player Wins!")
    if userInput == "scissors" and botInput == "paper":
        print(userInput + " VS " + botInput)
        print("Player Wins!")
    if userInput == "rock" and botInput == "scissors":
        print(userInput + " VS " + botInput)
        print("Player Wins!")
    if userInput == "rock" and botInput == "paper":
        print(userInput + " VS " + botInput)
        print("Bot Wins!")
    if userInput == "paper" and botInput == "scissors":
        print(userInput + " VS " + botInput)
        print("Bot Wins!")
    if userInput == "scissors" and botInput == "rock":
        print(userInput + " VS " + botInput)
        print("Bot Wins!")
    
    print("Wanna Rematch?")
    decision = input("Yes or No? ")
    if decision == "Yes":
        pass
    elif decision == "No":
        break
  
 
     
     
     
    