perfect code for guess the number
# guess wala game print ( "You have only 9 attempt to guess the nunber" ) hima = 1 while ( hima <= 9 ): qwer = int ( input ( "Enter your number:" )) if qwer >= 20 : print ( "you have to choose number less than you enter" ) elif 18 < qwer < 20 : print ( "you have to choose a number very less lesser than you enter" ) elif qwer <= 15 : print ( "you have to choose number greater than you enter:" ) elif 15 < qwer < 18 : print ( "you have to choose a number very less greater than you...