import random
RPClist = ["rock", "paper", "scissors"]
PlayerChoice = input("this is rock paper scissors. please choose one of three. or else!")
PythonChoice = random.choice(RPClist)
if PlayerChoice == PythonChoice:
print("tie")
elif PlayerChoice == "scissors":
if PythonChoice == "rock":
print("you win!")
else:
print("you lose :(")
elif PlayerChoice =="rock":
if PythonChoice =="paper":
print("you lose :(")
else:
print("you win!")
elif PlayerChoice == "paper":
if PythonChoice == "scissors":
print("you lose :(")
else:
print("you win!")