Practice Set 5 (List and Set) Q1-13

Duration: 12 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 the concepts of lists and sets, specifically addressing common pitfalls related to object references and shallow copying. The instructor begins by analyzing a question where a list A is assigned to another variable B, and then B is modified. The key concept demonstrated is that B is a reference to the same list object as A, so modifying B also changes A. The instructor then moves to a second question to illustrate the difference between shallow and deep copying. He shows that when a list contains a nested list, a shallow copy (using .copy()) creates a new outer list but shares the same inner list object. This means that modifying the inner list through one variable affects the other. The video uses a digital whiteboard to write out the code and its execution step-by-step, including the final state of the lists. The lesson concludes with a brief discussion on other list operations like extend, set operations, and list multiplication.

Chapters

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

    The video opens on a digital whiteboard displaying a Python practice sheet titled 'Practice Set-V' with a section on 'LIST and SET'. The instructor begins with Question 1, which presents the code: A = [1, 2, 3], B = A, B.append(4), print(A). The instructor explains that since B is assigned the value of A, B is a reference to the same list object. When B.append(4) is executed, it modifies the list object that both A and B point to. Therefore, the final print(A) will output the modified list [1, 2, 3, 4]. The instructor writes the final state of the list as [1, 2, 3, 4] on the board, indicating the correct answer is B) [1, 2, 3, 4].

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

    The instructor transitions to Question 2, which demonstrates the concept of shallow copying. The code is: A = [1, 2, 3], B = A.copy(), B.append(4), print(A). The instructor explains that A.copy() creates a new list object, so B is a new list. Modifying B does not affect A, so the output of print(A) is [1, 2, 3]. He then moves to Question 3, which introduces a nested list: A = [1, 2, [3, 4]], B = A.copy(), B[2][0] = 99, print(A). The instructor explains that a shallow copy creates a new outer list, but the inner list [3, 4] is still shared between A and B. When B[2][0] = 99 is executed, it modifies the shared inner list, so A is also affected. The final output of print(A) is [1, 2, [99, 4]]. He writes 'Shallow Copy' on the board to label this concept.

  3. 5:00 10:00 05:00-10:00

    The instructor continues with Question 4: A = [i for i in range(4)], print(A[::2]). He explains that this is a list comprehension creating [0, 1, 2, 3], and the slice A[::2] returns every second element starting from index 0, resulting in [0, 2]. He then moves to Question 5: A = [1, 2, 3], A.insert(1, 4), A.insert(1, 5), print(len(A)). He explains that insert(1, 4) adds 4 at index 1, making the list [1, 4, 2, 3], and then insert(1, 5) adds 5 at index 1, making it [1, 5, 4, 2, 3]. The length is 5. The video then shows Question 6: A = [1, 2, 3], B = [4, 5], A.extend(B), print(A). The instructor explains that extend adds all elements of B to the end of A, resulting in [1, 2, 3, 4, 5]. Question 7: A = [10, 20, 30, 40], print(A[-2:-1]) is shown, and he explains the slice returns a list with the second-to-last element, [30].

  4. 10:00 12:24 10:00-12:24

    The instructor covers the final questions. Question 8: A = [1, 2, 3, 2, 1], print(set(A)), print(set(A)). He explains that set(A) removes duplicates, so it returns {1, 2, 3}. Question 9: A = {1, 2, 3}, B = {3, 4, 5}, print(A ^ B). He explains that ^ is the symmetric difference operator, which returns elements in either A or B but not in both, resulting in {1, 2, 4, 5}. Question 10: A = {1, 2, 3}, B = {3, 4, 5}, print(A == B). He states this is False. Question 11: A = {1, 2, 3}, B = {3, 4, 5}, print(A < B). He states this is False. Question 12: nums = [1, 2, 3, 4], print(nums.pop(nums.index(3))). He explains that nums.index(3) returns 2, and pop(2) removes and returns the element at index 2, which is 3. Question 13: A = [1, 2, 3], print(A * 2). He explains that this multiplies the list, resulting in [1, 2, 3, 1, 2, 3].

The video provides a comprehensive walkthrough of Python list and set operations, with a strong emphasis on understanding the difference between object assignment and copying. The core teaching point is the distinction between shallow and deep copying, illustrated through the behavior of nested lists. The instructor uses a clear, step-by-step approach, writing out the code and its execution on a digital whiteboard to visually demonstrate how changes to one variable can or cannot affect another. This practical, problem-solving approach helps students grasp the underlying memory model of Python objects, which is crucial for avoiding common bugs in their code.