Untitled

 avatar
unknown
plain_text
2 years ago
383 B
4
Indexable
```python
import random

def play_game():
    team1 = "Donkere Mensen"
    team2 = "Blanke Mensen"
    
    score_team1 = 0
    score_team2 = 0
    
    for _ in range(90):
        if random.random() < 0.5:
            score_team1 += 1
        else:
            score_team2 += 1
    
    print(f"{team1}: {score_team1} - {team2}: {score_team2}")

play_game()
```
Editor is loading...
Leave a Comment