Author | gafe |
Submission date | 2014-10-11 12:21:38.191122 |
Rating | 3337 |
Matches played | 552 |
Win rate | 35.14 |
Use rpsrunner.py to play unranked matches on your computer.
import random
if input == "":
output = random.choice(["R","P","S"])
lastinput=""
if input == "R" :
output = random.choice(["P","S"])
if input == "P" :
output= random.choice(["P","S"])
if input == "S" :
output=random.choice(["S","R"])
if lastinput == output:
if lastinput == "R":
output=random.choice(["S","P"])
elif lastinput == "S":
output=random.choice(["R","S"])
elif lastinput == "P":
output=random.choice(["P","R"])
lastinput=input