Python - While Loop
Find the error in this nested while loop code:
i = 0
while i < 2:
j = 0
while j < 2:
print(i, j)
j += 1
i += 1i = 0
while i < 2:
j = 0
while j < 2:
print(i, j)
j += 1
i += 115+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions