def factorial(n, multi=1): if 1 == n: return multi else: return factorial(n - 1, multi * n)