Simple python game that generates a random number . If the guessed number is higher - output guides the user to try a lower number. If the guessed number is lower - output guides the user to try a higher number. To make the game interesting, the user has limited number of attempts(3) and the numbers keep changing. Incase of an input that is not a number , number of attempts remain the same . The program converts the input to an integer using the isdigit() function .