Skip to content

Commit

Permalink
Merge pull request #2025 from IndraniSom/Indrani
Browse files Browse the repository at this point in the history
added a number guessing game
  • Loading branch information
geekcomputers authored Oct 28, 2023
2 parents 09da674 + 6b36996 commit e72713b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions numberguessinggame/index.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import random

def number_guessing_game():

secret_number = random.randint(1, 100)
attempts = 0

print("Welcome to the Number Guessing Game!")
print("I'm thinking of a number between 1 and 100.")

while True:
try:
guess = int(input("Your guess: "))
attempts += 1

if guess < secret_number:
print("Too low! Try again.")
elif guess > secret_number:
print("Too high! Try again.")
else:
print(f"Congratulations! You guessed the number {secret_number} in {attempts} attempts!")
break

except ValueError:
print("Please enter a valid number.")

if __name__ == "__main__":
number_guessing_game()

0 comments on commit e72713b

Please sign in to comment.