Page
Nested Loops solution W2S1P3
Nested Loops solution W2S1P3
Nested Loops solution W2S1P3
print("Nested Loops")
for i in range(1,4): # Or you could use range(3)
print(i) # and print(i+1)
for j in range(4):
print("a")
Last modified: Tuesday, 9 May 2017, 10:01 PM