Skip to content

Commit 6b36996

Browse files
committed
added a number guessing game
1 parent b324c90 commit 6b36996

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

numberguessinggame/index.py

+28
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)