1.

What is the difference between parameters and arguments?

Answer»
S.No.ParametersArguments
1Values provided in the function header. Values provided in the function call.
2(eg) def area (r): —> r is the parameter(eg) def main() radius = 5.0 area (radius) —> radius is the argument.



Discussion

No Comment Found