Skip to content

Instantly share code, notes, and snippets.

@Psych714
Psych714 / rock paper scissors
Last active December 16, 2016 18:32
this is on python 3.5
print("Rock,Paper,Scissors,SHOOT!")
.lower()
input = input()
from random import randint
list_rock =["paper, you lose","rock,tie","scissors,you win"]
list_paper = ["rock,you win","scissors,you lose","paper,tie"]
list_scissors=["scissors,tie","paper,you win","rock,you lose"]
if input == "rock":
print(list_rock[randint(0,2)])
if input == "paper":