Why does recursion always starts with the problem factorial ?

def factorial(n): assert int(n) == n and n > 0,"Enter a positive integer only if n == 0: #base condition return 1 else: return n*factorial(n - 1) #Recursive case print(factorial(n))

Mar 29, 2025 - 12:02
 0
Why does recursion always starts with the problem factorial ?
def factorial(n):
    assert int(n) == n and n > 0,"Enter a positive integer only
    if n == 0:   #base condition
        return 1
    else:
        return n*factorial(n - 1)  #Recursive case
print(factorial(n))