In Python, how do I check if an object is a generator object?
Trying
>>> type(myobject, generator)
gives the error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'generator' is not defined
(I know I can check if the object has a __next__ method for it to be a generator, but I want some way using which I can determine the type of any object, not just generators.)
You can use
GeneratorTypefromtypes: