For loops, part 2

A useful exercise would be to put these instructions in a Python program and use the debugger to step through them one at a time. Example . Add this: for i in range(1,4): for j in range(10, 15):# the loop index cannot be i! print(i) Example . Change the i in the . print. statement to a j. for i in range(1,4): for j in range(10, 15): print(j ... ................
................