From 39424af76aab47027d0f5c6e319c6edde7feff5b Mon Sep 17 00:00:00 2001 From: bvince21 <124097099+bvince21@users.noreply.github.com> Date: Wed, 13 Dec 2023 21:59:57 -0800 Subject: [PATCH] Update guess_the_number.py --- guess_the_number.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guess_the_number.py b/guess_the_number.py index 9fe40d0..76e73d4 100644 --- a/guess_the_number.py +++ b/guess_the_number.py @@ -3,7 +3,7 @@ player_name = input("Hello, what is your name? ") number_of_guesses = 0 -print('I\'m glad to meet you! {} \nLet\'s play a game with you, I will think a number between 1 and 10 then you will guess, alright? \nDon\'t forget! You have only 3 chances so guess:'.format(player_name)) +print('I\'m glad to meet you! {} \nLet\'s play a game together, I will think a number between 1 and 10 then you will guess, alright? \nDon\'t forget! You have only 3 chances so guess:'.format(player_name)) while number_of_guesses < 3: guess = int(input())