美文网首页
test代码

test代码

作者: 猪猪一号 | 来源:发表于2020-03-26 17:10 被阅读0次
    def fib(max):
        n, a, b = 0, 0, 1
        while n < max:
            yield b
            a, b = b, a + b
            n = n + 1
        return 'done'
    
    
    
    if __name__=='__main__':
        for a in fib(6):
            print(a)
    

    相关文章

      网友评论

          本文标题:test代码

          本文链接:https://www.haomeiwen.com/subject/nwwcuhtx.html