Author | WDIFTL |
Submission date | 2011-06-09 20:16:06.265720 |
Rating | 2839 |
Matches played | 5489 |
Win rate | 22.21 |
Use rpsrunner.py to play unranked matches on your computer.
import random
game = ["R","P","S"]
if input=="":
history = list()
guess = list()
output = random.choice(game)
else:
history.append(input)
count = [history.count("R"),history.count("P"),history.count("S")]
i = -1
try:
while 1:
i = count.index(min(count), i+1)
guess.append(i)
except ValueError:
pass
output = game[random.choice(guess)]