Skip to content

Instantly share code, notes, and snippets.

@dichharai
Created July 9, 2023 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dichharai/2207cc0536b2ea059d772a3a8e380a9a to your computer and use it in GitHub Desktop.
Save dichharai/2207cc0536b2ea059d772a3a8e380a9a to your computer and use it in GitHub Desktop.
def func():
received = yield 'hello' # received is a generator
return received
print(list(func())) # prints ['hello']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment