4.3 Tuple Immutability

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 lecture on the immutability of tuples in Python. The instructor begins by introducing the topic with a title slide. He then demonstrates that tuples are immutable by attempting to modify a tuple element, which results in a TypeError. To illustrate the concept, he writes a tuple t = (10, 20, 30, 40) and shows that t[0] = 10 is an error. He further explains that while the tuple itself cannot be changed, if it contains a mutable object like a list, that inner list can be modified. He provides an example of a nested tuple t = (10, 20, [30, 40]) and shows that t[2][0] = 35 is allowed, which modifies the list inside the tuple. The lecture concludes with a final example of a tuple with a nested list and a 'Thank You' slide.

Chapters

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

    The video starts with a title slide showing the Python logo and the text 'Tuple Immutability'. The instructor, a man in a black polo shirt, stands in front of a digital blackboard. He begins by explaining the concept of tuple immutability. He writes the code snippet 't[0] = 10 Error' on the board, which is followed by the error message 'TypeError: 'tuple' object does not support item assignment'. He then writes the tuple 't = (10, 20, 30, 40)' and explains that attempting to change its elements, like 't[0] = 15', will result in an error. He also writes 't[2] = 15' to show that this is not allowed. The instructor then introduces the idea of nested lists, writing 't = (10, 20, [30, 40])' and explaining that while the tuple itself is immutable, the list inside it can be modified.

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

    The instructor continues to explain the concept of nested list modification. He writes 't[2][0] = 35' on the board, which is shown to be allowed, demonstrating that the inner list can be changed even though the tuple is immutable. He then writes 't = (0, 1, 2, 3)' as another example of a simple tuple. He proceeds to write 't = (10, 20, 30, [40, 50, 60])' to show a more complex nested tuple. He then writes 't[3][0] = 45' to show that the first element of the inner list can be modified. The instructor then erases the board and writes 't[3][0] = 45' again, followed by 't[3][1] = 55' and 't[3][2] = 65' to show that the entire inner list can be modified. The video ends with a 'Thank You...' slide.

The lecture effectively teaches the core concept of tuple immutability in Python. It starts with a clear definition and a direct error example to establish the rule. The key insight is then introduced through a practical example of a nested tuple, demonstrating that while the tuple structure is fixed, the contents of mutable objects within it (like lists) can be altered. This distinction is crucial for understanding how to work with complex data structures in Python. The progression from a simple tuple to a nested one provides a logical and comprehensive explanation of the topic.