AlwaysDo

AuthorJoshB
Submission date2013-10-01 22:46:34.420883
Rating2560
Matches played672
Win rate26.34

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

Source code:

from random import choice

choices = ["R", "P", "S"]

if input == "":
	output = choice(choices)
elif input == "R":
	output = "R"
elif input == "P":
	output = "P"
elif input == "S":
	output = "S"