Author | bob |
Submission date | 2019-11-24 17:40:11.783063 |
Rating | 1760 |
Matches played | 214 |
Win rate | 16.82 |
Use rpsrunner.py to play unranked matches on your computer.
if input == "": # initialize variables for the first round
l= 0
output=""
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