Python - For Loop
How can you modify nested loops to skip printing when inner loop variable equals outer loop variable?
Example code:
Example code:
for i in range(3):
for j in range(3):
print(i, j)