Re: [Tutor] Jumble

2006-01-18 Thread Danny Yoo
On Wed, 18 Jan 2006, ryan luna wrote: > 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 "Sor

Re: [Tutor] Jumble

2006-01-18 Thread Adam
On 19/01/06, ryan luna <[EMAIL PROTECTED]> wrote: Ok so what i have to do is make it so when a playerask for a hint the program display a hint, heres myloop, not whole script.guess = raw_input("\nYour guess: ")guess = guess.lower()while (guess != correct) and (guess != ""): print "Sorry, that's

[Tutor] Jumble

2006-01-18 Thread ryan luna
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 ente