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

Argument:-

                     Function के bracket ( ) के अन्दर दिये जाने वाले value .or variable को argument कहते हैं यह 2 प्रकार के होते हैं

  1. Actual argument

  2. Formal argument

Actual Argument:-

                  वह argument जिसे calling function के bracket ( ) में लिखा जाता है, actual argument कहलाता है

Formal Argument:-

      वह argument जिसे called function के bracket ( ) में लिखा जाता है, formal argument कहलाता है

def add(a,b):  ———–> formal argument

    c=a+b

    print(c)

add(10,20)    ———–> actual argument

Note: 10, a में store होगा, 20, b में

 

 

Argument:-

                              The value or variable given inside the bracket ( ) of the function is called argument. It is of two types

  1. Actual argument

  2. Formal argument

Actual Argument:-

                  The argument which is written within the bracket ( ) of the calling function is called the actual argument

Formal Argument:-

         The argument which is written within the bracket ( ) of the called function is called the formal argument

def add(a,b):  ———>  formal argument

    c=a+b

    print(c)

add(10,20)  ———–> actual argument

Note: 10, a में store होगा, 20, b में

 

error: Content is protected !!