First python program, syntax error in while loop

Neil Cerutti neilc at norwich.edu
Mon May 6 08:06:36 EDT 2013


On 2013-05-03, John Gordon <gordon at panix.com> wrote:
> In <auil2vFijo4U1 at mid.individual.net> Neil Cerutti <neilc at norwich.edu> writes:
>
>> Not quite yet. Players who guess correctly on the fifth try don't
>> get credit.
>
> Are you sure?  tries is initialized to zero and isn't
> incremented for the initial guess.

while (number != guess) and (tries < 5):

Is the condition that concludes the game.

After the game, you are told you lost if tries is not less than
five, regardless of if number == guess.

-- 
Neil Cerutti



More information about the Python-list mailing list