RockPaperScissorLoop

AuthorRednax50204
Submission date2014-09-02 01:13:37.316366
Rating2399
Matches played577
Win rate22.36

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

Source code:

## This assumes the other player will always play rock then paper then scissor 
if input == "R":
	output = "S"
elif input == "P":
	output = "R"
else:
	output = "P"