Argument:-
Function के bracket ( ) के अन्दर दिये जाने वाले value .or variable को argument कहते हैं यह 2 प्रकार के होते हैं
-
Actual argument
-
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
-
Actual argument
-
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 में |