The 2nd guesser (Tab)

Authordont judge me
Submission date2011-06-10 19:43:20.978272
Rating5051
Matches played5274
Win rate48.81

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

Source code:

import random

game = ["P","R","S"]

guess = random.randint(0,2)

#wait.... what if they expect that?

guess = guess+1

if guess > 2:

    guess = 0

output = game[guess]