joememe

Authorbob
Submission date2019-11-24 17:45:48.989376
Rating1210
Matches played211
Win rate13.74

Use rpsrunner.py to play unranked matches on your computer.

Source code:

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