Python - While Loop
What is the output of this code?
i = 1
while i <= 2:
j = 1
while j <= 3:
print(i, j)
j += 1
i += 1i = 1
while i <= 2:
j = 1
while j <= 3:
print(i, j)
j += 1
i += 115+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions