Author | Carsten Drossel |
Submission date | 2011-06-20 06:39:51.627344 |
Rating | 4997 |
Matches played | 4977 |
Win rate | 48.14 |
Use rpsrunner.py to play unranked matches on your computer.
import random
tobeat = random.choice(["R","P","S"])
if tobeat == "R":
output = "P"
elif tobeat == "P":
output = "S"
elif tobeat == "S":
output = "R"