Learn to code with step-by-step lessons. A place for students to work through programming fundamentals and build skills.
← Back to task
One possible program:
for row in range(1, 13): for col in range(1, 13): print(row * col, end="\t") print()