xyz12wq

Authorxyz
Submission date2019-06-08 20:01:08.320589
Rating3686
Matches played222
Win rate39.19

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

Source code:

import random
if input == "": # initialize variables for the first round
        output = random.choice(["R","P","S"])
elif input == "R":
	output = "P"
elif input == "P":
	output = "S"
elif input == "S":
	output = "R"
else:
        output = random.choice(["R","P","S"])