random**2

Authorgumuz
Submission date2011-05-26 15:35:21.685081
Rating2317
Matches played7481
Win rate21.37

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

Source code:

from random import choice

if choice((0,1)):
  output = choice(('R','P','S'))
else:
  output = 'R'