Random

AuthorByron Knoll
Submission date2011-05-21 08:33:23.274477
Rating5089
Matches played7509
Win rate49.89

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

Source code:

import random

move = random.randrange(0,3)
if move == 1:
	output = "R"
elif move == 2:
	output = "P"
else:
	output = "S"