美文网首页Python
简单,你没想到

简单,你没想到

作者: 楼上那位 | 来源:发表于2017-12-28 15:21 被阅读0次
    def fibo():
        a, b = 0,1
        while a < 100:
            yield a
            a, b = b, a+b
    

    相关文章

      网友评论

        本文标题:简单,你没想到

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