The code that reflects the recursive case to find the factorial of an integer in Python is:
```python
def factorial(n):
# base case
if n == 0:
return 1
# recursive case
else:
return n * factorial(n-1)
```
the following code is for python function to represent a recursive function to find the factorial of an ineger
which code reflects the recursive case
1 answer