5.6 Traversing Dictionary with Output

Duration: 2 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 Python programming tutorial focused on traversing dictionaries. The instructor begins by introducing the topic with a title slide that reads 'Traversing Dictionary with Output'. He then demonstrates how to iterate over a dictionary's items using a for loop. The core example involves a dictionary `d` with two key-value pairs: 'name': 'Luv' and 'math': 98. The instructor writes the code `for x, y in d.items():` and explains that `d.items()` returns a list of tuples, where each tuple contains a key-value pair. He then shows how to print each key and value using `print(x, y)`. The video concludes with the instructor saying 'Thank You'.

Chapters

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

    The video starts with a title slide for a Python lesson on 'Traversing Dictionary with Output'. The instructor, standing in front of a digital blackboard, begins the lesson. He writes a Python dictionary `d = {"name": "Luv", "math": 98}`. He then demonstrates how to traverse this dictionary by writing a for loop: `for x, y in d.items():`. He explains that `d.items()` returns a list of tuples, and the loop unpacks each tuple into variables `x` (the key) and `y` (the value). He writes the print statement `print(x, y)` to show how to output the key-value pairs. A diagram on the screen illustrates the structure of the dictionary, showing the key-value pairs. The instructor uses a yellow pen to write the code and explain the concepts, emphasizing the use of the `items()` method for iteration.

  2. 2:00 2:02 02:00-02:02

    The instructor concludes the lesson by saying 'Thank You'. The screen displays the text 'Thank You' in white font against a black background. The instructor is visible in the foreground, standing in front of the digital board, and appears to be finishing his presentation.

The video provides a clear, step-by-step demonstration of how to traverse a Python dictionary using a for loop and the `items()` method. The instructor effectively uses a practical example with a dictionary containing a name and a score to illustrate the concept. The visual aid of writing the code on a digital board helps reinforce the syntax and logic. The lesson is concise and focused, making it an effective resource for learning this fundamental Python programming technique.