Question
CHALLENGE ACTIVITY 3.5.2: Recursive function: Writing the recursive case. Write code to complete factorial_str()'s recursive case. Sample output with input: 5 5! = 5 *
CHALLENGE ACTIVITY 3.5.2: Recursive function: Writing the recursive case. Write code to complete factorial_str()'s recursive case. Sample output with input: 5 5! = 5 * 4 * 3 * 2 * 1 = 120 NONE OF THE ANSWERS WORK
def factorial_str(fact_counter, fact_value): output_string = ''
if fact_counter == 0: # Base case: 0! = 1 output_string += '1' elif fact_counter == 1: # Base case: print 1 and result output_string += str(fact_counter) + ' = ' + str(fact_value) else: # Recursive case output_string += str(fact_counter) + ' * ' next_counter = fact_counter - 1 next_value = next_counter * fact_value output_string += str(fact_counter)+'='+str(fact_value) THIS IS NOT CORRECT
return output_string
user_val = int(input()) print('{}! = '.format(user_val), end="")
Not all tests passed
clearTesting with input: 5
Output differs. See highlights below. Special character legend
Your output
5! = 5 * 5=5
Expected output
5! = 5 * 4 * 3 * 2 * 1 = 120
clearTesting with input: 8
Output differs. See highlights below. Special character legend
Your output
8! = 8 * 8=8
Expected output
8! = 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1 = 40320
keyboard_arrow_down
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started