Skip to content

Instantly share code, notes, and snippets.

@notmyname
Created September 5, 2014 20:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save notmyname/c8ee8ef2bba474cf1632 to your computer and use it in GitHub Desktop.
Save notmyname/c8ee8ef2bba474cf1632 to your computer and use it in GitHub Desktop.
>>> x = 0
>>> def foo():
... global x
... x += 1
... yield x
...
>>> y = foo()
>>> print x
0
>>> y.next()
1
>>> print x
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment