Finger Trouble

AuthorJust Spiffing
Submission date2014-02-04 18:58:49.739446
Rating5669
Matches played610
Win rate54.75

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

Source code:

from random import choice
if input == '':
    R,P,S = 'RPS'
    beats = dict(R=P, P=S, S=R)
better = beats.get(input, S)
output = choice('RPS' + better)