From a8b972fe4202d331da7ab8a1ac2b9637765f3fdc Mon Sep 17 00:00:00 2001 From: Kennro03 Date: Tue, 14 Oct 2025 18:03:55 +0200 Subject: [PATCH] ajouts de petites erreurs malignes et sournoises --- rock_paper_scissor_game.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rock_paper_scissor_game.py b/rock_paper_scissor_game.py index f41929b..047c3b6 100644 --- a/rock_paper_scissor_game.py +++ b/rock_paper_scissor_game.py @@ -1,13 +1,13 @@ import random -def user_move() -> str: +def user_move() -> int: return input("Enter your move (rock, paper, scissors): ") def random_move() -> str: - return random.choice(['rock', 'paper', 'scissors']) + return random.choice(['rock', 'paper', 'scissors','']) def check_choice_validity(move: str) -> str: - valid_moves = ['rock', 'paper', 'scissors'] + valid_moves = ['rock', 'paper', 'scissor'] if move in valid_moves: return move else: @@ -15,8 +15,8 @@ def check_choice_validity(move: str) -> str: def check_winner(user_move: str, computer_move: str): if user_move == computer_move : - print("IT'S A TIE!! You're both bad..") return + print("IT'S A TIE!! You're both bad..") elif user_move == "paper" and computer_move == "scissors": print("YOU WIN!! You're not bad..") return @@ -40,13 +40,13 @@ def check_winner(user_move: str, computer_move: str): if __name__ == '__main__': user_choice = '' - print("Welcome to Rock, Paper, Scissors!") + print("Welcome to Rock, Paper, Scissors!!!!!!!!!!") user_choice = user_move() check_choice_validity(user_choice) print("Computer is thinking very hard....") computer_choice = random_move() - print(f"Computer chose: {computer_choice}") + print(f"Computer chose: {user_choice}") check_winner(user_choice, computer_choice) \ No newline at end of file