Author | l._.l |
Submission date | 2018-07-01 09:59:18.162024 |
Rating | 4540 |
Matches played | 297 |
Win rate | 44.78 |
Use rpsrunner.py to play unranked matches on your computer.
import random
Liste = ["R", "P", "S"]
if input=="":
Anzahl_Stein = 0
Anzahl_Schere = 0
Anzahl_Papier = 0
elif input=="R":
Anzahl_Stein = Anzahl_Stein + 1
elif input == "S":
Anzahl_Schere = Anzahl_Schere + 1
elif input == "P":
Anzahl_Papier = Anzahl_Papier + 1
if Anzahl_Stein > Anzahl_Schere and Anzahl_Stein > Anzahl_Papier:
output = "P"
elif Anzahl_Papier > Anzahl_Schere:
output = "S"
else:
output = random.choice(Liste)