Skip to content

Instantly share code, notes, and snippets.

@jordan-medium
Created March 5, 2021 08:09
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