jar2

Authorjared
Submission date2011-11-05 03:41:57.373877
Rating4857
Matches played837
Win rate46.48

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

Source code:

import random

if input == "R":
    output = random.choice(["R","P"])
elif input == "P":
    output = random.choice(["P","S"])
elif input == "S":
    output = random.choice(["S","R"])
else:
    output = "R"