Author | bernardodallapreda |
Submission date | 2017-03-23 09:12:33.230261 |
Rating | 4322 |
Matches played | 384 |
Win rate | 39.58 |
Use rpsrunner.py to play unranked matches on your computer.
import random
#scusa ho copiato il codice ma devo provare il push
if input == "": # initialize variables for the first round
rockCount = paperCount = scissorsCount = 0
elif input == "R":
rockCount += 1
elif input == "P":
paperCount += 1
elif input == "S":
scissorsCount += 1
if input == "R":
output = random.choice(["P","S"])
elif input == "S":
output = random.choice(["R","P"])
else:
output = random.choice(["R","S"])