In recursion, ……………case/s includes recursive invocation code example
Example 1: recursion
# modified code tranclated to python from (Drab Duck)
def fact(num):
if num <= 1:
return 1
else:
return num*fact(num-1)
Example 2: recursion
def foo():
foo()