Author | ilia10000 |
Submission date | 2012-08-22 18:54:16.660564 |
Rating | 3400 |
Matches played | 794 |
Win rate | 35.77 |
Use rpsrunner.py to play unranked matches on your computer.
import random
if input == "":
previous=""
if previous =="":
output = random.choice(["R","P","S"])
previous = output
elif previous == "R":
output = random.choice(["P","S"])
previous = output
elif previous == "P":
output = random.choice(["R","S"])
previous = output
elif previous == "S":
output = random.choice(["P","R"])
previous = output