- 4
What is difference between calling and called function?
4 Antworten
+ 3
If function A() calls function B(), then A is calling and B is called.
0
what is called and calling function?
0
def fun(i): #this is called function
print("hello manish",i)
func(j) # this is calling function.
.. All the manipulation work is done in calling function.and the for the output purpose another function is called.. As shown in above example..
0
A calling function have actual parameter and called funtion have formal parameter that contains definition