Author | abra |
Submission date | 2017-03-21 15:46:34.956861 |
Rating | 3866 |
Matches played | 373 |
Win rate | 36.73 |
Use rpsrunner.py to play unranked matches on your computer.
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 input == "R":
output = random.choice(["P","S"])
elif input == "S":
output = random.choice(["R","P"])
else:
output = random.choice(["R","S"])