V2_mit random

Authorl._.l
Submission date2018-07-01 09:59:18.162024
Rating4540
Matches played297
Win rate44.78

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

Source code:

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)