Answer to Problem 6

Answer to Looping Problem 06
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()