Created
July 9, 2020 07:44
-
-
Save BexTuychiev/30ded2af585d04f54928a3dc80fc2f4e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import types | |
generator = (number for number in range(10)) | |
if isinstance(generator, types.GeneratorType): | |
print("Finally, a generator!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment