Skip to content

Instantly share code, notes, and snippets.

@ayuLiao
Created December 5, 2019 08:33
Show Gist options
  • Save ayuLiao/a44d95bfcedaa9e27f685235a865fc38 to your computer and use it in GitHub Desktop.
Save ayuLiao/a44d95bfcedaa9e27f685235a865fc38 to your computer and use it in GitHub Desktop.
可以从类型使用 GeneratorType
>>> import types
>>> types.GeneratorType
<class 'generator'>
>>> gen = (i for i in range(10))
>>> isinstance(gen, types.GeneratorType)
True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment