Unit 2 Task 49 - Solution

Learn to code with step-by-step lessons. A place for students to work through programming fundamentals and build skills.

Solution - Task 49: Full multiplication square

← Back to task


One possible program:

for row in range(1, 13):
    for col in range(1, 13):
        print(row * col, end="\t")
    print()