KGKites Garbinkites.hashnode.dev·Aug 26, 2024 · 1 min readGenerate factorialdef factorial(n): if n == 0: return 1 else: return n * factorial(n-1) # Example usage print(factorial(5)) # Output: 12000