10 Simple Recursion Programs in Python

What is Recursion? Recursion is a technique where a function calls itself to solve a smaller version of the same problem. Every recursive function must have: Base Case → Stops the recursion Recursi...

By · · 1 min read
10 Simple Recursion Programs in Python

Source: DEV Community

What is Recursion? Recursion is a technique where a function calls itself to solve a smaller version of the same problem. Every recursive function must have: Base Case → Stops the recursion Recursive Case → Calls the function again with a smaller input 1. Factorial of a Number The factorial of a number n is the product of all positive integers up to n. def factorial(n): if n == 0 or n == 1: return 1 return n * factorial(n - 1) print(factorial(5)) 2. Sum of First N Numbers This program calculates the sum of numbers from 1 to n. def sum_n(n): if n == 0: return 0 return n + sum_n(n - 1) print(sum_n(5)) 3. Print Numbers from 1 to N Print numbers in ascending order using recursion. def print_1_to_n(n): if n == 0: return print_1_to_n(n - 1) print(n) print_1_to_n(5) 4. Print Numbers from N to 1 Print numbers in descending order. def print_n_to_1(n): if n == 0: return print(n) print_n_to_1(n - 1) print_n_to_1(5) 5. Fibonacci Series (Nth Term) Each number is the sum of the previous two. def fib

Related Posts

Trending on ShareHub

  1. Understanding Modern JavaScript Frameworks in 2026
    by Alex Chen · Feb 12, 2026 · 0 likes
  2. The System Design Primer
    by Sarah Kim · Feb 12, 2026 · 0 likes
  3. Just shipped my first open-source project!
    by Alex Chen · Feb 12, 2026 · 0 likes
  4. OpenAI Blog
    by Sarah Kim · Feb 12, 2026 · 0 likes
  5. Building Accessible Web Applications: A Practical Guide
    by Alex Chen · Feb 12, 2026 · 0 likes
  6. Rapper Lil Poppa dead at 25, days after releasing new music
    Rapper Lil Poppa dead at 25, days after releasing new music
    by Anonymous User · Feb 19, 2026 · 0 likes
  7. write-for-us
    by Volt Raven · Mar 7, 2026 · 0 likes
  8. Before the Coffee Gets Cold: Heartfelt Story of Time Travel and Second Chances
    Before the Coffee Gets Cold: Heartfelt Story of Time Travel and Second Chances
    by Anonymous User · Feb 12, 2026 · 0 likes
    #coffee gets cold #the #time travel
  9. Best DoorDash Promo Code Reddit Finds for Top Discounts
    Best DoorDash Promo Code Reddit Finds for Top Discounts
    by Anonymous User · Feb 12, 2026 · 0 likes
    #doordash #promo #reddit
  10. Premium SEO Services That Boost Rankings & Revenue | VirtualSEO.Expert
    by Anonymous User · Feb 12, 2026 · 0 likes
  11. NBC under fire for commentary about Team USA women's hockey team
    NBC under fire for commentary about Team USA women's hockey team
    by Anonymous User · Feb 18, 2026 · 0 likes
  12. Where to Watch The Nanny: Streaming and Online Viewing Options
    Where to Watch The Nanny: Streaming and Online Viewing Options
    by Anonymous User · Feb 12, 2026 · 0 likes
    #streaming #the nanny #where
  13. How Much Is Kindle Unlimited? Subscription Cost and Plan Details
    How Much Is Kindle Unlimited? Subscription Cost and Plan Details
    by Anonymous User · Feb 12, 2026 · 0 likes
    #kindle unlimited #subscription #unlimited
  14. Russian skater facing backlash for comment about Amber Glenn
    Russian skater facing backlash for comment about Amber Glenn
    by Anonymous User · Feb 18, 2026 · 0 likes
  15. Google News
    Google News
    by Anonymous User · Feb 18, 2026 · 0 likes

Latest on ShareHub

Browse Topics

#ai (2733)#news (1884)#webdev (1231)#business (866)#programming (861)#/business (707)#opensource (633)#productivity (607)#sa transcripts (605)#investing (576)

Around the Network