life:-D

Authorabra
Submission date2017-03-21 15:46:34.956861
Rating3866
Matches played373
Win rate36.73

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

Source code:

import random

if input == "": # initialize variables for the first round
	rockCount = paperCount = scissorsCount = 0
elif input == "R":
	rockCount += 1
elif input == "P":
	paperCount += 1
elif input == "S":
	scissorsCount += 1

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