test0001

Authortesting
Submission date2011-06-09 04:59:41.258881
Rating4854
Matches played5317
Win rate47.23

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

Source code:

import random

if input == "":
    wins = 0
    loss = 0
    
    myprev = ""
    enemyp = ""

    phit = 0
    shit = 0
    rhit = 0

    rbias = 33
    pbias = 33
    sbias = 34

if input == "R":
    rhit = rhit+1
if input == "P":
    phit = phit+1
if input == "S":
    shit = shit+1

roll = random.randint(0,100)

if roll < rbias:
    output = "R"
elif roll < rbias + pbias:
    output = "P"
else:
    p=output = "S"