A simple Python console game where the computer randomly selects a number between 1 and 100, and the player tries to guess it.
- The program generates a random number between 1 and 100.
- The player inputs a guess.
- The program gives feedback:
- "Too low!" if the guess is smaller than the number.
- "Too high!" if the guess is bigger than the number.
- The game continues until the player guesses the correct number.
- The program shows the total number of attempts.
python guess_number.py