for some reason even tho i hav it set right this happens: Rock, Paper, or Scissors? Paper You chose: Paper Computer chose: Scissors Draw anyone who has played rock, paper, scissors knows what's wrong
Here is my code
`import time
import random
num = random.randrange(1, 4)
if num == 1:
play = "Rock"
elif num == 2:
play = "Paper"
elif num == 3:
play = "Scissors"
print("Welcome To the game ")
time.sleep(0.5)
choice = input("Rock, Paper, or Scissors?")
if choice == "Rock" or choice == "rock" and play == "Rock" or play == "rock":
status = "Draw"
elif choice == "Paper" or choice == "paper" and play == "Paper" or play == "paper":
status = "Draw"
elif choice == "Scissors" or choice == "scissors" and play == "Scissors" or play == "scissors":
status = "Draw"
elif choice == "Rock" or choice == "rock" and play == "Scissors" or play == "scissors":
status = "Win"
elif choice == "Paper" or choice == "paper" and play == "Rock" or play == "rock":
status = "Win"
elif choice == "Scissors" or choice == "scissors" and play == "Paper" or play == "paper":
status = "Win"
elif choice == "Scissors" or choice == "scissors" and play == "Rock" or play == "rock":
status = "Lose"
elif choice == "Rock" or choice == "rock" and play == "Paper" or play == "Paper":
status = "Lose"
elif choice == "Paper" or choice == "paper" and play == "Scissors" or play == "scissors":
status = "Lose"
print("You chose:", choice, "Computer chose:", play, )
print(status)`