Author | psr082 |
Submission date | 2011-06-09 17:56:22.069845 |
Rating | 3107 |
Matches played | 5166 |
Win rate | 28.69 |
Use rpsrunner.py to play unranked matches on your computer.
import random
if input == "":
score = 0
lastMove = "X"
if lastMove != input:
if lastMove == "R" and input == "P":
score -= 1
elif lastMove == "R" and input == "S":
score += 1
elif lastMove == "P" and input == "R":
score += 1
elif lastMove == "P" and input == "S":
score -= 1
elif lastMove == "S" and input == "R":
score -= 1
elif lastMove == "S" and input == "P":
score += 1
if score > 0:
lastMove = "R"
output = "R"
else:
lastMove = random.choice(["R", "P", "S"])
output = lastMove