Are you easy

AuthorShawn
Submission date2011-06-10 20:36:58.531290
Rating2332
Matches played5490
Win rate20.66

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

Source code:

import random;

if input == "": # initialize variables for the first round
	count = 0;

count += 1;

if count % 2 == 0:

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