Author | Rednax50204 |
Submission date | 2014-09-02 01:13:37.316366 |
Rating | 2399 |
Matches played | 577 |
Win rate | 22.36 |
Use rpsrunner.py to play unranked matches on your computer.
## This assumes the other player will always play rock then paper then scissor
if input == "R":
output = "S"
elif input == "P":
output = "R"
else:
output = "P"