Author | Kyle Miller |
Submission date | 2011-07-28 23:31:21.062219 |
Rating | 1839 |
Matches played | 3773 |
Win rate | 14.9 |
Use rpsrunner.py to play unranked matches on your computer.
import random
if not input :
moves = ["R", "P", "S"]
did_lose = {"R":"P", "P":"S", "S":"R"}
current_choice = random.choice(moves)
num_times = 1
output = current_choice
else :
if did_lose[input] == current_choice :
current_choice = random.choice(moves)
num_times = 0
num_times += 1
output = current_choice