A simple Python number guessing game where you have 5 attempts to guess a random number between a given range. The game provides hints whether your guess is too high or too low and uses colorful console output via colorama.
π Features
- Random number generation between a user-defined range
- Limited attempts (5 tries)
- Helpful hints after each guess
- Colorful messages for success using colorama
π· Example Gameplay
Enter the minimum number: 1
Enter the maximum number: 20
Guess the number between 1 to 20: 10
Too low! Try again.
Guess the number between 1 to 20: 15
Too high! Try again.
Congratulations! You guessed the number in 3 attempts.