Skip to content

Instantly share code, notes, and snippets.

@kshirsagarsiddharth
Created July 31, 2020 09:53
Show Gist options
  • Select an option

  • Save kshirsagarsiddharth/3029f0b15528c8eaf7d2f1610543800f to your computer and use it in GitHub Desktop.

Select an option

Save kshirsagarsiddharth/3029f0b15528c8eaf7d2f1610543800f to your computer and use it in GitHub Desktop.
def myfunc():
x = ""
while True:
print("Yielding {} and waiting".format(x))
x = yield x
if x is None:
break
print("Got {}. Doubling".format(x))
x = x * 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment