> I'm new to python. To my eyes this is a pretty poor attempt to > have static variables. I've implemented in the past a few static variables in python def accumulate( x ): accumulate.accumulator += x return accumulate.accumulator accumulate.accumulator = 0