Author | WDIFTL |
Submission date | 2011-06-10 20:51:51.298047 |
Rating | 2265 |
Matches played | 5275 |
Win rate | 21.38 |
Use rpsrunner.py to play unranked matches on your computer.
import random
game=["R","P","S"]
if input=="":
output=random.choice(game)
else:
if input=="R":
output=random.choice(["S","R"])
elif input=="P":
output=random.choice(["R","P"])
else:
output=random.choice(["S","P"])