Codementor Events

In Python How Recursion Works on Run Time

Published Sep 08, 2019
In Python How Recursion Works on Run Time

Photo by Martin Adams on Unsplash

Consider the code snippet below which has two functions foo and main. A special variable __name__ which is fundamentally set by the python interpreter before execution and its value is set to __main__ when executing as a main program.

In python, if a function does not end with a return statement or has a return statement without any expression, the special value None is returned.

#!/usr/bin/python

def foo(msg):
    print '{} foo'.format(msg)

def main():
    msg = 'hello'
    foo(msg)

if __name__ == '__main__':
    main()

# end

To determine the output of the above code, we need to know in which order Python executes lines of code. We can run it and get the output, but that’s not the point here.

Python interpreter executes the code from level 0 indentation. In the case above main() method will be executed as its at level 0 indentation. That’s the starting point of program execution and execution progress is kept in run-time stack.

What is run time stack?

This is the simple run time stack in which call frames are added on to stack and they are popped one by one until the it reaches the last frame in the stack and then execution is terminated.

6VN6LYcXucL8tqiYKoi1EY0xspap_small.png

This is the run time stack for our simple example program.

6e9Y9fWJF74PgGAeEYbuxj0xspap_small.png

Each block in the stack is called call frame aka activation records. They are stored in the memory to keep track of function call in progress and allocated memory is released when function returns.

Call frame is added on top of stack when function is called and removed when function returns. It contains the function name that was called and where to pick up from(line number) when function returns.

Parameters and local variables defined inside the function are also push onto stack and popped when function returns.When calling a function with parameters, the parameters becomes local variable on the stack that are initialized with actual parameter value.

So even if two functions have same local variable name they are different as they appear differently on to the stack. Same function call from different places possibly have different value for the same variables. Understanding this concept is important to understand how recursion works.

Below is the simple program to add numbers from a list using recursion.

#!/usr/bin/python

def sum_list(l):
    if not l:
        return 0
    return l[0] + sum_list(l[1:])

def main(l):
    total = sum_list(l)
    print total

if __name__ == '__main__':
    main([1, 2, 3])

# end

Below is the stack trace of above program for recursively getting sum of numbers in list.

ssiuDcMXGbS5W3YK9bqpQU0xspap_small.png

Understanding recursion under the hood can help us see its working mechanism which is not a magic. And writing recursion function required a base case to determine when to terminate. Without a base case it will stuck in loop and terminate with error.

Discover and read more posts from feroz khan
get started
post commentsBe the first to share your opinion
Evelynn
5 months ago

Experience a new standard of living with Northern Cyprus for Sale’s curated selection of apartments in North Cyprus https://northerncyprusforsale.com/apartments/ . This dedicated platform goes beyond the ordinary, offering a diverse range of apartments that cater to various preferences and budgets. Whether you’re a young professional seeking a studio flat or a family in search of a spacious unit, this website has you covered.

Show more replies