Important Notice:

Course Content
The Calendar Module
Library Function/Predefined Functions
0/4
Sys Module
Library Function/Predefined Functions
0/2
OS Module
Library Function/Predefined Functions
0/2
Functions in Python (Chapter-10) M3-R5
About Lesson

Syntax:-

      def function_name(parameters):

                        # function body

                        # What the function does goes here

                        # write some action

                        return result

Hint:-

            def:-    python में function को define करने की शुरूआत def keyword से होती है

Function_name:- इसमें कोई भी name दे सकते हैं जिसे हम बाद में इसी name से function को call करते हैं

Parameters:- function name के बाद parentheses () के बीच 0 या उससे ज्यादा parameters पास कर सकते हैं जिनको function calling के समय में values, argument के रूप में दी जाती है

Note:- parentheses () के बाद colon (:) लगाना जरूरी होता है

Function body:- function body एक indented block code होता है जिसमें किसी specific task को perform करने वाले statements होते हैं

Return result:-  इसके माध्यम से result को return किया जाता है

 

Syntax:-

      def function_name(parameters):

                        # function body

                        # What the function does goes here

                        # write some action

                        return result

Hint:-

            def:-    Defining a function in Python begins with the def keyword

Function_name:- We can give any name in it and later we can call the function with the same name.

Parameters:- After the function name, you can pass 0 or more parameters between parentheses () which are given as values, arguments at the time of function calling

Note:- A colon (:) must be placed after the parentheses ()

Function body:- The function body is an indented block of code that contains statements that perform a specific task

Return result:-  The result is returned through this

error: Content is protected !!