>>> import inspect>>> >>> def foo():... return 'foo'... >>> def bar():... yield 'bar'... >>> print inspect.isgeneratorfunction(foo)False>>> print inspect.isgeneratorfunction(bar)True
- Python 2.6版的新功能
欢迎分享,转载请注明来源:内存溢出
>>> import inspect>>> >>> def foo():... return 'foo'... >>> def bar():... yield 'bar'... >>> print inspect.isgeneratorfunction(foo)False>>> print inspect.isgeneratorfunction(bar)True
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)