13,420
edits
Changes
→PART 1 - Understanding WHILE Loops
== PART 1 - Understanding WHILE Loops ==
:'''WHILE loops''' use a the same type of conditions found in if statements. While the condition is True, the code indented under the while loop will be repeated. When the condition becomes False the loop will stop repeating.
:'''Perform the following steps'''