13,420
edits
Changes
→PART 1 - Understanding WHILE Loops
:#Open ipython3<source>
ipython3
</source>:#Below is a program that will count to 5. Each time the loop is run, it will add one to the count variable, increasing the variables number.<br><br>:#Issue the following at the ipython3 shell to see what happens:<source>
count = 0
while count != 5: