首页 > 代码库 > python摘记
python摘记
iterator支持两种builtin types:__iter__ 和 next,资料:https://docs.python.org/2/library/stdtypes.html#iterator.next
generator:https://wiki.python.org/moin/Generators
generator和iterator的区别:http://stackoverflow.com/questions/2776829/difference-between-pythons-generators-and-iterators
yield in python:http://www.ibm.com/developerworks/cn/opensource/os-cn-python-yield/index.html
例如
class Fab(object): def __init__(self, max): self.max = max self.n, self.a, self.b = 0, 0, 1 def __iter__(self): return self def next(self): if self.n < self.max: r = self.b self.a, self.b = self.b, self.a + self.b self.n = self.n + 1 return r raise StopIteration()
python摘记
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。