✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Які помилки допущені у коді нижче?
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n - 1)
print(factorial(5))