3.2 Set- Add, Remove

Duration: 3 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 focusing on set operations, specifically adding and removing items. The instructor begins by introducing the topic of adding items to a set, using the `add()` method. He demonstrates this with a code example where a set named `EmpName` is initialized with names, and then the name 'Jam' is added using `EmpName.add('Jam')`. The video then transitions to a new slide titled 'Remove Set Items', where the instructor explains three methods for removing elements: `remove()`, `discard()`, and `pop()`. He clarifies that `remove()` raises an error if the item is not found, while `discard()` does not. He also explains that `pop()` removes a random element and `clear()` removes all elements from the set. The lecture uses on-screen code snippets and the instructor's verbal explanations to teach these fundamental set operations.

Chapters

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

    The video opens with a title slide showing the Python logo and the text 'Set : Add, R'. The instructor, standing in front of a screen, begins a lecture on Python sets. The screen then displays a slide titled 'Add Set Items' with a code example. The example shows a set `EmpName` initialized with names: `{'Jhon', 'Bob', 'Marry', 'Cherry'}`. The instructor explains the `add()` method, pointing to the line `EmpName.add('Jam')`, which adds the string 'Jam' to the set. He then points to the `print(EmpName)` statement, indicating the output will show the updated set. The instructor uses a pen to highlight the code and gestures to emphasize the concept of adding an item to a set.

  2. 2:00 3:03 02:00-03:03

    The screen transitions to a new slide titled 'Remove Set Items'. The instructor explains the `remove()` method, pointing to the line `EmpName.remove('Bob')` and the accompanying comment: '#remove() method that cause errors if items not found'. He then moves to the `discard()` method, highlighting `EmpName.discard('Jam')` and the comment '#discard() method does not cause errors if items not found'. Next, he explains the `pop()` method, pointing to `EmpName.pop()` and the comment '#pop() method remove random element from the set'. Finally, he discusses the `clear()` method, pointing to `EmpName.clear()` and the comment '#clear() method remove all elements from the set'. The instructor uses his pen to circle and underline key parts of the code to emphasize the differences between the methods.

The video provides a clear, step-by-step tutorial on managing items in a Python set. It begins with the fundamental operation of adding an element using the `add()` method, demonstrating its syntax and effect. The lesson then logically progresses to the topic of removal, systematically comparing the `remove()`, `discard()`, and `pop()` methods. The key distinction highlighted is the error-handling behavior of `remove()` versus `discard()`, which is a crucial concept for robust programming. The final method, `clear()`, is presented as a way to empty the entire set. The use of a consistent code example across both topics helps students understand the practical application of these operations.