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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!