You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
userInput = input("Do you want to play rock, paper, or scissors?\n").lower()
randomSelection = random.randint(0, 2)
computerSelection = options[randomSelection]
print(f"You played: {userInput} and the computer played: {computerSelection}")
if userInput == computerSelection:
print("It's a tie!")
elif((userInput = "rock" and computerSelection = "paper") or (userInput = "paper" and computerSelection = "scissors") or (userInput = "scissors" and computerSelection = "rock")):