In Perl 5.10, I can say:
sub foo () {
state $x = 1;
say $x++;
}
foo();
foo();
foo();
...and it will print out:
1
2
3
Does Python have something like this?
|
|
|
|
|
|
|
The closest parallel is probably to attach values to the function itself.
|
||
|
|
Yes, though you have to declare your global variable first before it is encountered in
EDIT: In response to the comment, it's true that python has no static variables scoped within a function. Note that
The output will be only |
||||||
|
|
|
A class may be a better fit here (and is usually a better fit for anything involving "state"):
|
||||
|
|
|
Python has generators which do something similar: http://stackoverflow.com/questions/231767/can-somebody-explain-me-the-python-yield-statement |
||
|
|
|
|
You could also use something like
to avoid a global var. Lifted from this link about the same question. |
|||
|
|
Not sure if this is what you're looking for, but python has generator functions that don't return a value per se, but a generator object that generates a new value everytime
usage:
look here for more explanation on yield: |
||
|
|
|
|
|
||
|
|
|
|
Not that I'm recommending this, but just for fun:
This works because of the way mutable default arguments work in Python. |
||
|
|
|
|
Here's one way to implement a closure in python:
I borrowed this example verbatim from a python mailing list post. |
|||
|
|
|
|
The preferable way is to use class or generator ( For the sake of completeness here's a variant w/ closure in Python 3.x:
|
||||
|
|
|
Here's another dirty cheap way to do it, it's a variation on Tryiptich's answer, but using decorators
|
||
|
|