Python - For Loop
What will this code print?
for x in range(1, 3):
for y in range(2):
print(x + y, end=' ')for x in range(1, 3):
for y in range(2):
print(x + y, end=' ')15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions