Skip to content
Advertisement

Global variables in recursion. Python

OK, i’m using Python 2.7.3 and here is my code:

JavaScript

I’m trying to modify the variable count inside the leng function. Here are the things that I’ve tried:

  1. If I put the variable count outside the lenRecur function it works fine the first time, but if I try again without restarting python shell, the count (obviously) doesn’t restart, so it keeps adding.
  2. If I change the count += 1 line for count = 1 it also works, but the output is (obviously) one.

So, my goal here is to get the length of the string using recursion, but I don’t know how to keep track of the number of letters. I’ve searched for information about global variables, but I am still stuck. I don’t know if i haven’t understood it yet, or if I have a problem in my code.

Thanks in advance!

Advertisement

Answer

count in lenRecur is not a global. It is a scoped variable.

You’ll need to use Python 3 before you can make that work in this way; you are looking for the nonlocal statement added to Python 3.

In Python 2, you can work around this limitation by using a mutable (such as a list) for count instead:

JavaScript

Now you are no longer altering the count name itself; it remains unchanged, it keeps referring to the same list. All you are doing is altering the first element contained in the count list.

An alternative ‘spelling’ would be to make count a function attribute:

JavaScript

Now count is no longer local to lenRecur(); it has become an attribute on the unchanging lenRecur() function instead.

For your specific problem, you are actually overthinking things. Just have the recursion do the summing:

JavaScript

Demo:

JavaScript
Advertisement