Author | Colin Rice |
Submission date | 2012-11-20 21:57:28.357647 |
Rating | 4514 |
Matches played | 791 |
Win rate | 42.86 |
Use rpsrunner.py to play unranked matches on your computer.
import random
if input=="":
output = random.choice(['R', 'P', 'S'])
else:
if input == 'R':
output = 'P'
elif input == 'P':
output = 'S'
else:
output = 'R'