# working with loops! def main(): counter = 1 # priming (setting up) while counter <= 10: # test (condition) # body of the loop (block of code) print('%2d. I will not fly paper airplanes in class.' % counter) counter = counter + 1 # update .... print('\n\n') counter = 5 while counter <= 10: # test (condition) # body of the loop (block of code) print('%2d. I will not fly paper airplanes in class.' % counter) counter += 5 # update .... # counter += 5 --> is the same as counter = counter+5 main()