Question: Which line number is the action for the recursive step? def fact(n): #1 if n0 or n1: #2 return 1 #3 else: #4 return n

Which line number is the action for the recursive step? def fact(n): #1 if n0 or n1: #2 return 1 #3 else: #4 return n * fact (n-1) #5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
