while-loops enter the last time after condition is filled?

S

skanemupp

it seems to me from my results that when i use a while-loop it will
execute once after the condition is met.

ie the conditions is met the code executes one time more and then
quits.
 
T

Tim Chase

it seems to me from my results that when i use a while-loop it
will execute once after the condition is met.
Nope.

ie the conditions is met the code executes one time more and
then quits.

Must be that your conditional is wrong, or your conditions are
not updated the way you think they are.

-tkc
 
J

John Machin

it seems to me from my results that when i use a while-loop it will
execute once after the condition is met.

ie the conditions is met the code executes one time more and then
quits.

The syntax is this:

while condition:
do_something()

Do you mean that it executes do_something() only once, but you expect
it to execute more that once?

Or should we interpret your seemingly inconsistent statement by
changing "condition(s) is met" to "condition(s) is NOT met" -- in
other words, it is executing one EXTRA time after you expect it to
have stopped?

Perhaps you should supply a short example of runnable code (including
print statements to show what is happening), the actual output that
you got when you ran that code, and what was the output that you
expected.
 
S

Sumit

it seems to me from my results that when i use a while-loop it will
execute once after the condition is met.
Perhaps your condition is wrong. Please provide the code where this
occured.
 
B

bruno.desthuilliers

it seems to me from my results that when i use a while-loop it will
execute once after the condition is met.

ie the conditions is met the code executes one time more and then
quits.

The problem is obviously in your code, but since you failed to post
the minimal code exhibiting the problem, we can't help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,051
Latest member
CarleyMcCr

Latest Threads

Top