python摘记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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摘记的主要内容,如果未能解决你的问题,请参考以下文章

python摘记

摘记:代码检查错误列表

前端阅读——《代码整洁之道》摘记之整洁代码命名函数注释

计蒜客课程竞赛入门--统计三角形 代码流程摘记

前端阅读——《活用PHPMySQL建构Web世界》摘记之设计技巧

2017.4.7------软件测试的艺术+整理以前的摘记