Computer Science, asked by hype10, 1 month ago

what is difference between functions and recrussion in python
please tell in detail and please tell how to use it.. ​

Answers

Answered by dharitrimohanty83
1

Answer:

Recursive function: A function is recursive if the function, in order to compute its result, ends up "calling itself". ... The upshot is that we have the same function, yes, but it is one call of the function that in turn makes a separate call to the same function, but with different arguments.

Similar questions