Re: python code

Top Page
Attachments:
Message as email
+ (text/plain)
+ (text/html)
+ (text/plain)
Delete this message
Reply to this message
Author: Michael Havens
Date:  
To: amit, Main PLUG discussion list
Subject: Re: python code
nope. that didn't fix it.


:-)~MIKE~(-:

On Mon, Apr 13, 2015 at 11:46 AM, Amit Nepal <> wrote:

> You would probably want to wait and ask for the input inside the loop as
> well. What you seem to be doing is you ask for input and then you execute
> the loop not letting the user input the new number and thus running into an
> infinite loop.
>
> This might fix it, not tested though :)
>
> print("Welcome.")
> g = input("Guess the number: ")
> guess = int(g)
>
> while guess != 5
>     print("Guess again.")
>     guess = int(g)
>     print("Correct")

>
>
> Thanks
> Amit
> On 4/13/2015 11:01 AM, Michael Havens wrote:
>
>> print("Welcome.")
>> g = input("Guess the number: ")
>> guess = int(g)
>> while guess != 5:
>>     print("Guess again.")
>> print("Correct")

>>
>
> ---------------------------------------------------
> PLUG-discuss mailing list -
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>

---------------------------------------------------
PLUG-discuss mailing list -
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss