✪ Choose the correct option.
Fill in the code to complete the following function for computing factorial.
def factorial(n):
if n == 0: # Base case
return1
else:
return _____________________ # Recursive call