[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/aditya0035/PythonLearning/Pythontuts/47.IteratorsInPython.py [Back]  [Original]

"""
Iterators are those which will implement __next__ method then any object can call next on them
"""
class FirstHundreadNumber:
    def __init__(self):
        self.number=0
    def __next__(self):
        if self.number

Web Proxy Viewer  |  New URL  |  Original Page