moreda-second

Authormoreda
Submission date2019-06-02 16:47:04.654627
Rating2487
Matches played229
Win rate24.45

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

Source code:

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