From aedb5393cef891ea5351b2d7cebea56bd219e4cd Mon Sep 17 00:00:00 2001 From: COUVIDOUX Gwendal Date: Tue, 14 Oct 2025 18:10:33 +0200 Subject: [PATCH] =?UTF-8?q?Il=20faut=20ien=20mettre=20apr=C3=A8s=20un=20re?= =?UTF-8?q?turn=20snon=20ca=20ne=20sera=20pas=20excecute?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rock_paper_scissor_game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rock_paper_scissor_game.py b/rock_paper_scissor_game.py index 047c3b6..04afed9 100644 --- a/rock_paper_scissor_game.py +++ b/rock_paper_scissor_game.py @@ -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..") #print avant le return 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