您现在的位置是:课程教程文章

Python yield实现迭代器协议

2023-12-13 23:49课程教程文章 人已围观

说明

1、yield实现迭代器协议的两种方法__iter__和next(Python 2) 或__next__(Python 3)。

2、这两种方法都使对象成为迭代器。

可以使用模块中的Iterator抽象基类对它进行类型检查collections。

实例

>>>deffunc():
...yield'Iam'
...yield'agenerator!'
...
>>>type(func)#Afunctionwithyieldisstillafunction
<type'function'>
>>>gen=func()
>>>type(gen)#butitreturnsagenerator
<type'generator'>
>>>hasattr(gen,'__iter__')#that'saniterable
True
>>>hasattr(gen,'next')#andwith.next(.__next__inPython3)
True

以上就是Python yield实现迭代器协议的方法,希望对大家有所帮助。更多Python学习指路:python基础教程

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

课程教程:Python yield实现迭代器协议

上一篇:javascript函数和对象的关系

下一篇:没有了

站点信息

  • 文章统计篇文章