Random_Simple

AuthorAndrew D
Submission date2011-12-11 23:26:45.296385
Rating4911
Matches played854
Win rate50.12

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

Source code:

import random

while True:
	x = ["R","P","S"]
	r = random.randint(0,2)
	random.shuffle(x)
	output = x[r]
	break