@author[/USER]: ElSlayeRR
"""
#Rock - Paper - Scissors
import random
pc = ["rock", "paper", "scissors"]
print("Welcome. Please indicate your choice.")
choiceuser = str(input("Rock, Paper or Scissors?: ")).lower()
choicepc = random.choice(pc)
"""
Conditions That Going to Happen:
rock - rock
rock - paper
rock - scissors
paper - rock
paper - paper
paper - scissors
scissors - rock
scissors - paper
scissors - scissors
if (choiceuser = "x"), (choicepc = "x")
"""
if choiceuser == "rock" and choicepc == "rock":
print("Rock and rock it's a tie!")
elif choiceuser == "rock" and choicepc == "paper":
print("Paper wraps rock, Computer wins :(")
elif choiceuser == "rock" and choicepc == "scissors":
print("Rock breaks scissors, you win!")
#First rock end. First paper starts.
elif choiceuser == "paper" and choicepc == "rock":
print("Paper wraps rock, you win!")
elif choiceuser == "paper" and choicepc == "paper":
print("Paper and paper, it's a tie!")
elif choiceuser == "paper" and choicepc == "scissors":
print("Scissors cut paper, you lose :(")
#First paper end. First scissors starts.
elif choiceuser == "scissors" and choicepc == "rock":
print("Rock breaks scissors, you lose :(")
elif choiceuser == "scissors" and choicepc == "paper":
print("Scissors cut paper, you win!")
elif choiceuser == "scissors" and choicepc == "scissors":
print("Scissors and scissors, it's a tie!")
# Conditions end. v