Easypeasylemonsquisy

Authorbernardodallapreda
Submission date2017-03-23 09:12:33.230261
Rating4322
Matches played384
Win rate39.58

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

Source code:

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"])