Skip to content

Instantly share code, notes, and snippets.

@kunigami
Last active February 2, 2020 00:14
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 kunigami/c8619f54f1a3d65bdc20b768f44075f2 to your computer and use it in GitHub Desktop.
Save kunigami/c8619f54f1a3d65bdc20b768f44075f2 to your computer and use it in GitHub Desktop.
async def g_async():
return 10
# <class 'coroutine'>
print(type(g_async()))
def g_coro():
yield 10
# <class 'generator'>
print(type(g_async()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment