Skip to content

Commit

Permalink
added a number guessing game
Browse files Browse the repository at this point in the history
  • Loading branch information
IndraniSom committed Oct 28, 2023
1 parent b324c90 commit 6b36996
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 6b36996

Please sign in to comment.