Answer to Problem 7

Answer to Looping Problem 07
1
2
3
4
5
6
for row in range(10):
    for column in range(10):
        print(row, end=" ")

    # Print a blank line to move to the next row
    print()