Created
January 26, 2018 23:53
-
-
Save amyreese/d2d9e090915ba0ead4e9a93bc4fd0274 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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