Author | bob |
Submission date | 2019-11-24 17:45:48.989376 |
Rating | 1210 |
Matches played | 211 |
Win rate | 13.74 |
Use rpsrunner.py to play unranked matches on your computer.
output=""
if input == "": # initialize variables for the first round
l= 0
elif input == "R" and output=="S":
l += 1
elif input == "P" and output=="R":
l += 1
elif input == "S" and output=="R":
l += 1
if l==2:
output = "P" # paper beats rock
elif l==4:
output = "S" # scissors beats paper
else:
output = "R" # rock beats scissors
l=0