Author | testing |
Submission date | 2011-06-09 04:59:41.258881 |
Rating | 4854 |
Matches played | 5317 |
Win rate | 47.23 |
Use rpsrunner.py to play unranked matches on your computer.
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"