/gen_full.py Secret
Created
March 5, 2021 08:09
This file contains 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 gen1(): | |
yield "I am the bone of my sword" | |
yield "Steel is my body and fire is my blood" | |
yield "I have created over a thousand blades" | |
temp_gen1 = gen1() | |
print( next(temp_gen1) ) | |
print( next(temp_gen1) ) | |
print( next(temp_gen1) ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment