13.8 tuple() function

Duration: 4 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 educational video provides a comprehensive tutorial on Python's tuple() function and the sorted() function, focusing on their behavior with tuples. The instructor begins by introducing the tuple() function, explaining that it converts any iterable into a tuple and is used to create tuples dynamically. He demonstrates this with code examples, showing how a list [1, 2, 3, 4] is converted to a tuple (1, 2, 3, 4) and how a string "Python" is converted to a tuple of its characters ('P', 'y', 't', 'h', 'o', 'n'). The video then transitions to the sorted() function, highlighting two critical points: it does not modify the original tuple and it returns a list, not a tuple. This is demonstrated with a tuple t = (40, 10, 30, 20), where sorted(t) returns a new list [10, 20, 30, 40]. The instructor also shows how to convert this list back into a tuple using the tuple() function. The final segment briefly introduces the concept of swapping two variables, showing the syntax x, y = y, x. The entire lesson is presented on a digital whiteboard with clear code snippets and handwritten annotations.

Chapters

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

    The video starts with the instructor introducing the 'tuple() Function'. On the digital whiteboard, the text 'tuple() Function' is displayed. The instructor explains that the tuple() function is used to convert any iterable into a tuple and is used to create tuples dynamically. He then provides a code example: 'lst = [1, 2, 3, 4]' and 't = tuple(lst)', which converts the list into a tuple. He also shows another example with a string: 't = tuple("Python")', which creates a tuple of the individual characters. The instructor uses a yellow marker to draw arrows and write the resulting tuples, such as (1, 2, 3, 4) and ('P', 'y', 't', 'h', 'o', 'n'), to visually demonstrate the conversion process.

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

    The video transitions to a new topic: 'sorted() with Tuples'. The instructor highlights two important points: 'sorted() does not modify the tuple' and 'Returns a list, not a tuple'. He demonstrates this with the code: 't = (40, 10, 30, 20)' and 'result = sorted(t)'. The output shown is '[10, 20, 30, 40]' and the type is '<class 'list'>', confirming the function returns a list. The instructor then shows how to convert this list back into a tuple using 'tuple(result)', writing the resulting tuple '(10, 20, 30, 40)' on the board. The final segment briefly introduces 'Swapping Two Variables' with the syntax 'x, y = y, x', showing the concept of variable swapping in Python.

The video presents a clear, step-by-step progression of Python concepts. It begins with the fundamental `tuple()` function, explaining its purpose and demonstrating its application on different data types like lists and strings. The core of the lesson then shifts to the `sorted()` function, emphasizing its non-destructive nature and the fact that it returns a list, which is a crucial distinction for students working with immutable data. The instructor effectively uses the digital whiteboard to write code and draw diagrams, reinforcing the concepts of conversion and the resulting data types. The lesson concludes by introducing a related concept, variable swapping, which is a common operation in programming. The overall flow is logical, moving from data creation to data manipulation, and is designed to build a solid understanding of these core Python functions.