Ok so what i have to do is make it so when a player
ask for a hint the program display a hint, heres my
loop, not whole script.

guess = raw_input("\nYour guess: ")
guess = guess.lower()
while (guess != correct) and (guess != ""):
    print "Sorry, that's not it."
    print "If you need a hint enter help"
    if guess == hint:

The problem is its passing up "Hint" altogether
when the user input is hint it doesn't do anything,
prolly makin a noob mistake here, Thank for any help
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to