The Cat Computing Universe: PyLab

def factorial(n): if n==0: return 1 return n*factorial(n-1) print(factorial(8))