def add(a,b):
c=a+b
print("Sum is",c)
x=20
y=40
add(x,y)
Identify the following in the above code:
(i)
Function Arguments
(ii)
Function Parameters
Answers
Answered by
0
Answered by
0
Answer:
a and b defined at the time of defining the function are called parameters
x and y used at the time of calling the function are called arguments.
Similar questions