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
print("Welcome to the game Rock Paper Scissors\n")
player1_choice = input("Player 1, please choose rock, paper, or scissors: ")
player2_choice = input("Player 2, please choose rock, paper, or scissors: ")
print("\nCalculating results...\n")
if (player1_choice == "rock" and player2_choice == "scissors") or (player1_choice == "paper" and player2_choice == "rock") or (player1_choice == "scissors" and player2_choice == "paper"):