Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import random
- def main():
- joueur1 = 0
- player1wins = 0
- joueur2 = 0
- player2wins = 0
- rounds = 1
- while rounds != 4:
- print("Round numero: " + str(rounds))
- joueur1 = dice_roll()
- joueur2 = dice_roll()
- print("Joueur 1 Rouleau: " + str(joueur1))
- print("Joueur 2 Rouleau: " + str(joueur2))
- if joueur1 == joueur2:
- print("Draw!\n")
- elif joueur1 > joueur2:
- player1wins = player1wins + 1
- print("Joueur 1 gagne!!\n")
- else:
- player2wins = player2wins + 1
- print("Joueur 2 gagne!!\n")
- rounds = rounds + 1
- if player1wins == player2wins:
- print("Personne a gagné :( ")
- elif player1wins > player2wins:
- print("Joueur 1 a gagné - Rounds : " + str(player1wins))
- else:
- print("Joueur 2 a gagné- Rounds : " + str(player2wins))
- def dice_roll():
- diceRoll = random.randint(1, 6)
- return diceRoll
- main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement