bot1

Authorgafe
Submission date2014-10-11 11:06:28.998905
Rating3055
Matches played566
Win rate31.98

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

Source code:

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