7.2 User Defined Functions

Duration: 6 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 comprehensive lecture on user-defined functions in Python, presented by an instructor in front of a digital screen. The lesson begins with an introduction to the concept of user-defined functions, explaining that they are custom functions created by a programmer for specific needs. A central diagram categorizes these functions into four types based on the presence or absence of a return type and arguments: 'With Return Type & with Arguments', 'With Return Type & without Arguments', 'Without Return Type & with Arguments', and 'Without Return Type & without Arguments'. The instructor then provides a detailed, worked example for each of the four types. For the first type, 'With Return Type & with Arguments', a Python function `Exp(x, y)` is defined to calculate `x**y`, which is then called with user inputs. The second type, 'With Return Type & without Arguments', shows a function `Exp()` that takes no parameters but still returns a value. The third type, 'Without Return Type & with Arguments', demonstrates a function `Exp(x, y)` that prints the result directly without returning a value. The final type, 'Without Return Type & without Arguments', shows a function `Exp()` that takes no inputs and prints the result. The video concludes with a 'Thank You' slide, summarizing the key concepts of function definition and calling in Python.

Chapters

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

    The video opens with a title slide displaying 'User Defined Functions' and the Python logo. The instructor, a man in a black polo shirt, stands in front of a digital screen and begins his lecture. He explains that in Python, users can create their own functions for specific needs, which are known as user-defined functions. He then introduces a central diagram that categorizes these functions into four types based on return type and arguments. The diagram is a flowchart with a main box labeled 'User Defined Function Types' branching into four boxes: 'With Return Type & with Arguments', 'With Return Type & without Arguments', 'Without Return Type & with Arguments', and 'Without Return Type & without Arguments'. The instructor gestures towards the diagram as he explains the classification.

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

    The instructor transitions to the first example, titled 'With Return Type & with Arguments'. The screen displays a code snippet for a function `def Exp(x, y): return x**y`. He explains that this function takes two arguments, `x` and `y`, and returns the result of `x` raised to the power of `y`. He then shows the code for calling the function: `x=int(input('Enter first number:'))`, `y=int(input('Enter second number:'))`, `z=Exp(x,y)`, and `print('Exponential is:', z)`. He demonstrates the output, showing that for inputs 10 and 4, the result is 10000. He then moves to the second example, 'With Return Type & without Arguments'. The code shows `def Exp():` with no parameters, but it still returns a value. He explains that the function takes no arguments but returns a result, which is then printed. He demonstrates this with inputs 15 and 3, resulting in an output of 3375. He then proceeds to the third example, 'Without Return Type & with Arguments'. The code shows `def Exp(x, y): print('Exponential is:', x**y)`, which does not use a `return` statement. He explains that the function prints the result directly. He demonstrates this with inputs 15 and 4, resulting in an output of 50625. Finally, he moves to the fourth example, 'Without Return Type & without Arguments'. The code shows `def Exp():` with no parameters and no return statement, only a print statement. He explains that this function takes no inputs and prints the result directly. He demonstrates this with inputs 8 and 2, resulting in an output of 64.

  3. 5:00 6:05 05:00-06:05

    The instructor concludes the lecture by summarizing the four types of user-defined functions. He reiterates the key differences: functions with a return type can be used in expressions and store results, while those without a return type simply perform an action like printing. He emphasizes that the choice of function type depends on the specific programming requirement. The final slide appears with the text 'Thank You...' in white letters on a black background. The instructor gives a final nod, and the video ends.

The video provides a structured and practical lesson on Python's user-defined functions. It begins with a clear conceptual framework, using a classification diagram to organize the four possible function types. The instructor then systematically demonstrates each type with a consistent, real-world example of calculating an exponential. This approach allows students to see the direct impact of the function's return type and argument structure on its behavior and output. The progression from simple to more complex examples, coupled with clear on-screen code and live demonstration, effectively teaches the fundamental principles of function design in Python.