While Loops
Another common way to loop through code is the while-loop. The for-loop loops through a series of objects. The while-loop is considerably different, the loop will continue until a condition is met. Similar to if-statements, the while-statement evaluates a boolean expression to determine if it's True or False. It does that evaluation at the beginning of every iteration. If the expression evaluates to False then the loop is exited and the subsequent code is run. If it's True, then the code in the while-loop is run and condition is re-evaluated once again.
It's pretty simple, after typing 'while' you put the boolean expression and then a semi-colon. All the code under the while block will be executed. After the last line of while-loop block (n = n - 1) the condition is then evaluated again. It stops when n = 0 in our example.
So what happens if we don't have that last line which decreases the value of n? Well Python, as with all programming languages, does what it tell it do. As n doesn't decrease and will always be greater than 0, and the loop will continue indefinitely. It's called an infinite loop.
Let's see this sample execution of the get favourite number function: get_favourite_number()
Exercises
Write a function
guess_num
that creates a random number between 1 and 10 then asks the user to enter a number within that range. If the number is smaller or larger the user will be notified accordingly. The user can only enter if the number entered is correct.Write a function
print_until_odd
that prints out the elements of a list but stops if the current number is odd. If it prints out every element of the list then display a congratulatory message. If if finds an odd number, tell the user that one was found and exit the loop.
Last updated