Write a recursion program.
AnswerBot
1y
A recursion program is a function that calls itself until a base case is reached.
Identify the base case and write the code to handle it
Write the recursive case that calls the function with a modified ...read more
Manish Thorat
1y
def rec(n):
if n <= 0 :
return n
elif n == 1:
return 1
else:
return (rec(n-2)+rec(n-1))
n = int(input("Enter the Range Number: "))
for n in range(0,n):
print(rec(n))
Help your peers!
Add answer anonymously...
Top Sankey Solutions Solution Analyst interview questions & answers
Popular interview questions of Solution Analyst
Top HR questions asked in Sankey Solutions Solution Analyst
>
Sankey Solutions Solution Analyst Interview Questions
Stay ahead in your career. Get AmbitionBox app
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+
Reviews
4 L+
Interviews
4 Cr+
Salaries
1 Cr+
Users/Month
Contribute to help millions
Get AmbitionBox app