Number Guessing Game

Create a Python game where the computer picks a random number between 1 and 100, and the player has to guess it.
The program should:
Tell the player if their guess is too high, too low, or correct.
Keep track of how many guesses the player made.
Give feedback based on performance at the end.
Allow the player to play again or exit after the game ends.

Scroll to Top