P1_Anzahl

Authorl._.l
Submission date2018-07-01 09:40:39.387434
Rating3573
Matches played286
Win rate34.97

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

Source code:

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 = "R"