Skip to content

Instantly share code, notes, and snippets.

@notmyname
Created January 2, 2014 19:36
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/8225201 to your computer and use it in GitHub Desktop.
Save notmyname/8225201 to your computer and use it in GitHub Desktop.
generator example
def foo():
print 'in foo'
yield 'bar'
x = foo()
print 'start'
for i in x:
print i
print 'done'
'''
Output of the above script is:
start
in foo
bar
done
'''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment