12.9 Pattern Printing using Nested Loops

Duration: 7 min

This video lesson is available to enrolled students.

Enroll to watch — DSSSB TGT Computer Science 2026 Section B

AI Summary

An AI-generated summary of this video lecture.

This video is a programming tutorial that demonstrates how to use nested loops in Python to print various patterns. The instructor begins by introducing the concept of pattern printing using nested loops, with the first example being a square pattern. The code for the square pattern is shown as a nested loop structure: a for loop for the rows (i) and a nested for loop for the columns (j), where each iteration prints an asterisk. The instructor then explains the logic by writing out the values of the loop variables i and j on the side, showing how the inner loop runs completely for each iteration of the outer loop. The second example is a right-angled triangle pattern, where the number of asterisks printed in each row increases. The code uses a similar nested loop structure, but the range of the inner loop is determined by the current value of the outer loop variable i. The instructor again uses the board to illustrate the iteration process. The third example is a number pattern, where the inner loop prints the value of j, which ranges from 1 to i+1, creating a sequence of numbers in each row. The final example is a multiplication table, where the inner loop prints the product of i and j. The video concludes with a 'Thanks' slide.

Chapters

  1. 0:00 2:00 00:00-02:00

    The video starts with a title slide that reads 'Pattern Printing Using Nested Loops'. The instructor, a man in a black polo shirt, stands in front of a digital screen. He introduces the topic of pattern printing using nested loops in Python. He then transitions to the first example, a 'Square Pattern'. The code for this pattern is displayed on the screen: a for loop for i in range(4), a nested for loop for j in range(4), and a print statement that outputs an asterisk with 'end=" "' to prevent a new line. The instructor begins to explain the logic by writing the loop variables i and j on the side of the screen, starting with i=1 and j=1, 2, 3, 4.

  2. 2:00 5:00 02:00-05:00

    The instructor continues to explain the square pattern. He demonstrates the iteration process by writing the values of i and j on the screen. For i=1, the inner loop runs for j=1, 2, 3, 4, printing four asterisks. He then moves to i=2, and the process repeats, showing that the inner loop runs four times for each of the four iterations of the outer loop. He uses a large yellow circle to highlight the entire nested loop structure. After explaining the square pattern, he transitions to the next example, a 'Right Triangle'. The code for this pattern is shown: a for loop for i in range(1, 5), a nested for loop for j in range(i), and a print statement for an asterisk. He begins to explain this new pattern by writing the values of i on the side of the screen, starting with i=1, 2, 3, 4, 5.

  3. 5:00 7:01 05:00-07:01

    The instructor explains the right-angled triangle pattern. He demonstrates that for i=1, the inner loop runs for j=1, printing one asterisk. For i=2, the inner loop runs for j=1, 2, printing two asterisks, and so on. He uses a yellow triangle to visually represent the pattern. He then moves to the third example, a 'Number Pattern'. The code is shown: a for loop for i in range(1, 5), a nested for loop for j in range(1, i+1), and a print statement for j. He explains that this will print numbers from 1 to i in each row. He writes the values of i and j on the screen to illustrate the process. Finally, he presents the fourth example, a 'Multiplication Table Using Nested Loop'. The code is shown: a for loop for i in range(1, 6), a nested for loop for j in range(1, 6), and a print statement for i*j. He explains that this will print a 5x5 multiplication table. The video ends with a 'Thanks' slide.

The video provides a clear, step-by-step tutorial on using nested loops in Python to generate different patterns. It begins with a simple square pattern, which serves as a foundation for understanding the basic structure of nested loops. The instructor then builds complexity by introducing a right-angled triangle, a number pattern, and finally a multiplication table. Each example demonstrates a different way to control the number of iterations in the inner loop based on the outer loop variable, which is the key concept for creating varied patterns. The use of a digital whiteboard to write out the loop variables and illustrate the iteration process is an effective teaching method that helps students visualize the logic.