Rand!

AuthorBlattAttack
Submission date2014-08-23 20:55:26.458719
Rating4581
Matches played554
Win rate48.19

Use rpsrunner.py to play unranked matches on your computer.

Source code:

import random

RPS=["R","P","S"]
RIndex=random.randint(0,2)
output=RPS[RIndex]