From 5ad4dc46111b3984fecd92a837f42deddacd4e7e Mon Sep 17 00:00:00 2001 From: Amanda Bialer Date: Mon, 22 Dec 2025 10:38:09 -0300 Subject: [PATCH] alternative path --- rock_paper_scissors.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rock_paper_scissors.py b/rock_paper_scissors.py index 3249fe4..8bb5b0e 100644 --- a/rock_paper_scissors.py +++ b/rock_paper_scissors.py @@ -30,6 +30,9 @@ print("You won!") user_wins += 1 + elif user_input == computer_pick: + print("It's a tie!") + else: print("You lost!") computer_wins += 1