Looping will be very important skill for this course, from my experience more that 75% of the activities you will do during the course will require you to loop a piece of code.

There are different ways to make loops, but right now we will review the one called “While”.

The while loop basically takes a condition, and as long as this condition remains true the loop will continue, meaning that the instructions WITHIN the while will keep repeating themselves.

For instance if we write: while(i>0): print(“hit yourself ”), the condition for the while to happen is i>0, so each time the loop repeats itself their two values will be compared to see if the condition is true or false.

The piece written above has two ENOURMOUS mistakes, number one being that “i” has no assigned value, we can solve this by writing “i=1” before the while. The remaining problem is that, since there is nothing that makes the value of “i” change, it will always be one, meaning that it will always be bigger than zero and that the while will repeat itself endlessly, eating up your RAM and killing your computer, and that is a big no-no.

One very simple way to solve this matter is to write “i= i- 0.1” inside the while, this way the value for i will change every time the while repeats itself, in this case turning into a smaller number, eventually reaching the value of zero.

Now this is very important, once the condition the while has is no longer met, in this case i>0, the while will stop.

For the program we wrote i=1, and each run of the while we subtract 0.1, turning it into 0.9, 0.8, 0.7 and so on till we reach zero, this means that the while will repeat itself ten times, performing the action inside it ten times.

The outcome of our little program will be: “hit yourself hit yourself hit yourself hit yourself hit yourself hit yourself hit yourself hit yourself hit yourself hit yourself”

Of course this is just the basics, things will get scarier as we continue, but be patient and try to understand this as best as you can, since the while itself does not change, EVER, just the things outside it and inside it.

CC BY 4.0 Loops with “While” by juansalvadorfernandez is licensed under a Creative Commons Attribution 4.0 International License.