Question

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

Answers

There are no human answers yet.
Answered by GPT 3.5
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)
```

Related Questions