uran

Authorbob
Submission date2019-11-24 00:42:53.043099
Rating5138
Matches played209
Win rate50.24

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

Source code:

import random
if input == "": # initialize variables for the first round
	rockCount = paperCount = scissorsCount = 0
elif input == "R":
	rockCount += 1
elif input == "P":
	paperCount += 1
elif input == "S":
	scissorsCount += 1
if rockCount > paperCount and rockCount > scissorsCount:
	output = random.choice(["P","P","R","S"]) # paper beats rock
elif paperCount > scissorsCount:
	output = random.choice(["P","S","R","S"]) # scissors beats paper
else:
	output = random.choice(["P","R","R","S"]) # rock beats scissors