Author | l._.l |
Submission date | 2018-07-01 09:40:39.387434 |
Rating | 3573 |
Matches played | 286 |
Win rate | 34.97 |
Use rpsrunner.py to play unranked matches on your computer.
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"