Scott W Dunning <swdunn...@cox.net> Wrote in message: > Would you please stop posting in html?
> def print_hints(secret, guess):   if guess < 1 or guess > 100:     print     print "Out of range!"     print   if guess < secret:     print     print "Too low!"   if guess > secret:     print     print "Too high!"   if guess < secret - 10 or guess > secret - 10: Think about that line. You might even want to put in a separate function to test what it does. HINT: it's wrong.     print "You are cold!"     print     print "Sorry please try again."     print     print   elif guess < secret - 5 or guess > secret - 5: Same mistake.     print "You are warmer!"     print     print "Sorry please try again."     print     print   else:     print "You're on fire!!"     print     print "Sorry please try again."     print     print -- DaveA
_______________________________________________ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor