I can't seem to figure out why this is an infinite loop in python??
for i in range(n):
j=1
while((i*j)<n):
j+=1
shouldn't the outer loop go n times. incrementing j until its equal to n div i each time?
|
I can't seem to figure out why this is an infinite loop in python??
shouldn't the outer loop go n times. incrementing j until its equal to n div i each time? |
|||
|
|
|
|
||||
|
|
|
You can create a "trace" showing the state changes of the variables.
etc. You can prove that your trace is correct by inserting When in doubt, print it out. |
|||
|
|
|||
|
|
|
On the first time through the outer loop, the inner loop becomes an infinite loop. It doesn't matter what happens after that. There's no "after infinity". |
|||
|
|
|
i is 0 rewrite you loop like
using this version of the range function will create a range that starts at 1 instead of 0 |
|||
|
|