1 2 3 4 5 6
for row in range(10): for column in range(10): print(column, end=" ") # Print a blank line to move to the next row print()