<- Back to the chapter.

Answer to Problem 8

Chapter 6, Section 1

for row in range(10):
    for column in range(row+1):
        print (column,end=" ")

    # Print a blank line to move to the next row
    print()
Variables:
column=
row=
Output:
0
0 1
0 1 2
0 1 2 3
0 1 2 3 4
0 1 2 3 4 5
0 1 2 3 4 5 6
0 1 2 3 4 5 6 7
0 1 2 3 4 5 6 7 8
0 1 2 3 4 5 6 7 8 9