From 7b97a0655b776f22f074e8737b77afabcb04ffb5 Mon Sep 17 00:00:00 2001 From: CheerathAniketh Date: Tue, 18 Nov 2025 07:18:11 +0530 Subject: [PATCH] add guess_the_number_userplay.py --- other/guess_the_number_userplay | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 other/guess_the_number_userplay diff --git a/other/guess_the_number_userplay b/other/guess_the_number_userplay new file mode 100644 index 000000000000..6f406acc1ac4 --- /dev/null +++ b/other/guess_the_number_userplay @@ -0,0 +1,34 @@ +import random + +def guess(): + print("🎯 Welcome to Guess the Number game!") + print("Rules are simple, guess a number between 0 and 20, and enter it below.") + print("Only 5 Attempts are possible") + print() + + + computer = random.choice(range(21)) + print("Alright, lets go! Type your first guess 👇") + print() + + print(computer) + + count = 0 + while True: + user = int(input("Number: ")) + if count == 5: + print("Try again, max only 5 Attempts") + break + if user == computer: + print("🔥 Success! You've guessed it right!") + break + elif user < computer: + print("Try some higher numbers!") + count += 1 + elif user > computer: + print("Not that high, try lower ones!") + count += 1 + + + +guess() \ No newline at end of file