Skip to content

Instantly share code, notes, and snippets.

@amyreese
Created January 26, 2018 23:53
Show Gist options
  • Save amyreese/d2d9e090915ba0ead4e9a93bc4fd0274 to your computer and use it in GitHub Desktop.
Save amyreese/d2d9e090915ba0ead4e9a93bc4fd0274 to your computer and use it in GitHub Desktop.
def first():
print('in first')
yield 25
print('back in first')
def second():
print('in second')
for value in first():
print('back in second, got: ', value)
second()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment