kz

mail@pastecode.io avatar
unknown
python
23 days ago
537 B
2
Indexable
Never
from random import randint

flips = 0
wins = 0
losses = 0


while flips < 5:

    y = str(input("Kopf oder Zahl? "))

    if y == "Kopf" or y == "K":
        guess = 1
        

    if y == "Zahl" or y == "Z":
        guess = 0
        
    wurf = randint(0,1)

    if wurf == guess:
        print("Gewonnen")
        wins += 1
        
    else:
        print("verloren")
        losses += 1

    flips += 1
    

print(f"Du hast {flips} mal geworfen, hast {wins} mal gewonnen und {losses} mal verloren.")
Leave a Comment