python Python Class Iterator Square Root

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python Class Iterator Square Root相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python

class Squared:
    def __init__(self):
        self.number = 0
    def __iter__(self):
        return self
    def __next__(self):
        self.number += 1
        return self.number * self.number
 
if __name__ == '__main__':
    squared = Squared()
    count = 0
 
    for number in squared:
        print(number)
        if count > 5:
            break
        count += 1

以上是关于python Python Class Iterator Square Root的主要内容,如果未能解决你的问题,请参考以下文章

我一直在寻找python界的Scott Meyers

python的map与reduce

Python break和continue的区别 和range的使用

OJ中python接收一行多个输入值的非常简单的方式

python3中内建函数map()与reduce()的使用方法

python class和class(object)用法区别