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

Default Argument:-

                Positional argument में by default value भी provide किया जा सकता है यदि function को किसी भी प्रकार की value न दी जाए तो केवल default value pass किया जाता है

def add(a,b=10):

    c=a+b;

    print(c)

add(20)

 

 

Default Argument:-

            By default value can also be provided in positional argument. If no value is given to the function then only default value is passed.

def add(a,b=10):

    c=a+b;

    print(c)

add(20)

 

error: Content is protected !!