Formal Arguments:
When a function is defined, it may have some parameters. These parameters are useful to receive values from outside of the function. They are called Formal arguments.
Actual Arguments:
When we call the function, we should pass data or values to the function. These values are called actual arguments.
Type of actual arguments:
Positional arguments
Keyword arguments
Default arguments
Variable length arguments
Comments
Post a Comment