New to programming question

Joal Heagney joal at bigpond.net.au
Fri Apr 1 02:46:41 EST 2005


Oh goddammmnitttt. I seem to be doing this a lot today. Look below for 
the extra addition to the code I posted.

Joal Heagney wrote:
> 
> Here's my contribution anycase:
> 
> count = 0
> # Get first input
> name = raw_input("Guess my name: ")
> # Give the sucker two extra goes
> while count < 2:
>     # Check the value of name
>     if name == 'Ben':
>         print "You're right!"
>         break
>     else:
>         name = raw_input("Try again: ")
	  # Here's the bit I missed out.
	  count += 1
> # Of course, we haven't checked the sucker's last guess
> # so we have to do that now.
> if count == 2:
>     if name == 'Ben':
>         print "You're right!"
>     else:
>         print "No more tries for you!!!"
> 
> 
> Hope this helps.
> Joal

GRRRRRRRR.

Joal



More information about the Python-list mailing list