Quelle est la fonction récursive Python dans Python
pythonCopydef fact(n):
"""Recursive function to find factorial"""
if n == 1:
return 1
else:
return (n * fact(n - 1))
a = 6
print("Factorial of", a, "=", fact(a))
Shy Skunk