Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the idiomatic Python equivalent of this C/C++ code?

void foo()
{
    static int counter = 0;
    counter++;
    printf("counter is %d\n", counter);
}

specifically, how does one implement the static member at the function level, as opposed to the class level? And does placing the function into a class change anything?

share|improve this question

10 Answers

up vote 79 down vote accepted

A bit reversed, but this should work:

def foo():
    foo.counter += 1
    print "Counter is %d" % foo.counter
foo.counter = 0

If you want the counter initialization code at the top instead of the bottom, you can create a decorator:

def static_var(varname, value):
    def decorate(func):
        setattr(func, varname, value)
        return func
    return decorate

Then use the code like this:

@static_var("counter", 0)
def foo():
    foo.counter += 1
    print "Counter is %d" % foo.counter

It'll still require you to use the foo. prefix, unfortunately.

share|improve this answer
Not really static (in the C++ sense) if you change counter does it affect all other instances of foo()? – Martin Beckett Nov 10 '08 at 23:47
Yes, try it in the interpreter, his code works as expected. – Jeremy Banks Nov 10 '08 at 23:49
4  
there is only one instance of foo - this one function. all invocations access the same variable. – Claudiu Nov 10 '08 at 23:49
3  
That's cool -- never knew you could add attributes to a function! – mipadi Nov 11 '08 at 1:49
9  
Sorry for digging this up, but I'd rather put if "counter" not in foo.__dict__: foo.counter = 0 as the first lines of foo(). This would help to avoid code outside the function. Not sure if this was possible back in 2008 though. P.S. Found this answer while searching for possibility to create static function variables, so this thread is still "alive" :) – binaryLV Aug 9 '12 at 6:30
show 2 more comments

You can add attributes to a function, and use it as a static variable.

def myfunc():
  myfunc.counter += 1
  print myfunc.counter

# attribute must be initialized
myfunc.counter = 0

Alternatively, if you don't want to setup the variable outside the function, you can use hasattr() to avoid an AttributeError exception:

def myfunc():
  if not hasattr(myfunc, "counter"):
     myfunc.counter = 0  # it doesn't exist yet, so initialize it
  myfunc.counter += 1

Anyway static variables are rather rare, and you should find a better place for this variable, most likely inside a class.

share|improve this answer
This is really great.... – Dilletante Dec 21 '12 at 14:35

In addition to the way Claudiu demonstrated, you can also do it like this. (Though it's probably a bad idea; it's not very clear.)

>>> def foo(counter=[0]):
...   counter[0] += 1
...   print("Counter is %i." % counter[0]);
... 
>>> foo()
Counter is 1.
>>> foo()
Counter is 2.
>>> 

Default values are initialized only when the function is first evaluated, not each time it is executed, so you can use a list or any other mutable object to maintain static values.

share|improve this answer
I tried that, but for some reason, the function parameter was initialising itself to 140, not 0. Why would this be? – andrewdotnich Nov 10 '08 at 23:58
2  
This doesn't look terribly Pythonic too me, but points for creativity. – bouvard Nov 11 '08 at 0:01
@andrewdotnich: I'm not sure why it would do that, I've tried it on 2.5, 2.6 and 3.0rc1, and it worked properly in each case. =\ – Jeremy Banks Nov 11 '08 at 0:06
@bouvard: Yeah, I try to avoid using it in general, but for quick scripts whose code quality I'm not greatly concerned about, it can be convenient. – Jeremy Banks Nov 11 '08 at 0:07
@Jeremy: would the fact that the function is an instance method change anything? – andrewdotnich Nov 11 '08 at 0:09
show 4 more comments

Here is a fully encapsulated version that doesn't require an external initialization call:

def mystaticfun():
    if not hasattr(mystaticfun, "counter"): #(1)
        mystaticfun.counter=0  #initialization call is inside the function
    else:
        mystaticfun.counter+=10
    print mystaticfun.counter

Members of Python objects are dynamically stored in myobject.__dict__. Since a function is a Python object, use (1) to check for first call. Note:

not hasattr(mystaticfun, "counter") 

is equivalent to

not "counter" in mystaticfun.__dict__ 
share|improve this answer
1  
the only problem with this is that it's really not neat at all, and whenever you want to use this pattern you have to cut & paste the code... hence my use of a decorator – Claudiu Jan 30 at 0:07
I like your decorator approach. Though sometimes, when inserted behind enemy lines, I'll want to leave as light a footprint as possible. Then I might deploy this single function alternative before slipping back into the jungle - like a ghost. – Riaz Rizvi Jan 30 at 1:29
1  
I think you're confusing Python programming with being a commando in the Vietnam War. – Tim Feb 10 at 23:03

Python doesn't have static variables but you can fake it by defineing a callable object and then use it as a function.

class Foo(object):
  counter = 0

  def __call__(self):
    Foo.counter += 1
    print Foo.counter

foo = Foo()

foo() #prints 1
foo() #prints 2
foo() #prints 3
share|improve this answer
5  
Not totally "static", because you could have multiple instances of the callable object. You can move counter into class definition to make it truly static. – S.Lott Nov 11 '08 at 2:48
5  
Functions are already objects so this just adds an unnecessary layer. – DasIch Jan 30 '11 at 14:48

Use a generator function to generate an iterator.

def foo_gen():
    n = 0
    while True:
        n+=1
        yield n

Then use it like

foo = foo_gen().next
for i in range(0,10):
    print foo()

If you want an upper limit:

def foo_gen(limit=100000):
    n = 0
    while n < limit:
       n+=1
       yield n

If the iterator terminates (like the example above), you can also loop over it directly, like

for i in foo_gen(20):
    print i

Of course, in these simple cases it's better to use xrange :)

Here is the documentation on the yield statement.

share|improve this answer
That doesn't look like Python... – Greg Hewgill Nov 10 '08 at 23:38
Questioner asked for Python, not PHP – eglaser Nov 10 '08 at 23:39
I asked for Python, not PHP, but thanks anyway… – andrewdotnich Nov 10 '08 at 23:39
Ehm. Sorry, i thought I was reading questions tagged php. Other tab. Fixed it. – gnud Nov 10 '08 at 23:39
hmm.. a strange way of doing it, i'll post my version – Claudiu Nov 10 '08 at 23:44
show 4 more comments

One can also consider:

def foo():
    try:
        foo.counter += 1
    except AttributeError:
        foo.counter = 0

Notice that exception will be consider only once, there is no if statement.

share|improve this answer

I personally prefer the following to decorators. To each their own.

def staticize(name, factory):
    """Makes a pseudo-static variable in calling function.

    If name `name` exists in calling function, return it. 
    Otherwise, saves return value of `factory()` in 
    name `name` of calling function and return it.

    :param name: name to use to store static object 
    in calling function
    :type name: String
    :param factory: used to initialize name `name` 
    in calling function
    :type factory: function
    :rtype: `type(factory())`

    >>> def steveholt(z):
    ...     a = staticize('a', list)
    ...     a.append(z)
    >>> steveholt.a
    Traceback (most recent call last):
    ...
    AttributeError: 'function' object has no attribute 'a'
    >>> steveholt(1)
    >>> steveholt.a
    [1]
    >>> steveholt('a')
    >>> steveholt.a
    [1, 'a']
    >>> steveholt.a = []
    >>> steveholt.a
    []
    >>> steveholt('zzz')
    >>> steveholt.a
    ['zzz']

    """
    from inspect import stack
    # get scope enclosing calling function
    calling_fn_scope = stack()[2][0]
    # get calling function
    calling_fn_name = stack()[1][3]
    calling_fn = calling_fn_scope.f_locals[calling_fn_name]
    if not hasattr(calling_fn, name):
        setattr(calling_fn, name, factory())
    return getattr(calling_fn, name)
share|improve this answer
_counter = 0
def foo():
   global _counter
   _counter += 1
   print 'counter is', _counter

Python customarily uses underscores to indicate private variables. The only reason in C to declare the static variable inside the function is to hide it outside the function, which is not really idiomatic Python.

share|improve this answer
1  
Cluttering the namespace unnecessarily is not pythonic either. – DasIch Jan 30 '11 at 14:49

The idiomatic way is to use a class, which can have attributes. If you need instances to not be separate, use a singleton.

There are a number of ways you could fake or munge "static" variables into Python (one not mentioned so far is to have a mutable default argument), but this is not the Pythonic, idiomatic way to do it. Just use a class.

Or possibly a generator, if your usage pattern fits.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.