python Python Square Root Iterator

Posted

tags:

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

#!/usr/bin/env python3.5

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 Square Root Iterator的主要内容,如果未能解决你的问题,请参考以下文章

使用牛顿-拉弗森法定义平方根函数(Newton-Raphson method Square Root Python)

python 在python中创建一个str square。

LeetCode 473 - Matchsticks to Square - Medium (Python)

Python 解LeetCode:367. Valid Perfect Square

二分查找May-9th “Valid Perfect Square (Python3)”

Python类和对象_修改和复制