Foolio

Authorkatmarsen
Submission date2013-10-02 17:24:55.755138
Rating2372
Matches played645
Win rate25.74

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

Source code:

import random
if not input:
    up = 0
    cycle = 0
up = up + 1
if up>7:
    cycle = cycle + 1
    up = 0
if cycle%2:
    output = random.choice(['R','P','S'])
else:
    output = 'RPS'[(cycle/2) % 3]