198
edits
Changes
→PART 1 - WHILE LOOPS
''' Understanding While Loops '''
:'''Perform the following steps'''
:#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.<source>
count = 0