We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b324c90 commit 6b36996Copy full SHA for 6b36996
numberguessinggame/index.py
@@ -0,0 +1,28 @@
1
+import random
2
+
3
+def number_guessing_game():
4
5
+ secret_number = random.randint(1, 100)
6
+ attempts = 0
7
8
+ print("Welcome to the Number Guessing Game!")
9
+ print("I'm thinking of a number between 1 and 100.")
10
11
+ while True:
12
+ try:
13
+ guess = int(input("Your guess: "))
14
+ attempts += 1
15
16
+ if guess < secret_number:
17
+ print("Too low! Try again.")
18
+ elif guess > secret_number:
19
+ print("Too high! Try again.")
20
+ else:
21
+ print(f"Congratulations! You guessed the number {secret_number} in {attempts} attempts!")
22
+ break
23
24
+ except ValueError:
25
+ print("Please enter a valid number.")
26
27
+if __name__ == "__main__":
28
+ number_guessing_game()
0 commit comments