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...
Sankey Solutions Solution Analyst Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
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

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter