python-CSD-kursu/python-temel/MySimpleRange.2.py

21 lines
448 B
Python
Raw Normal View History

2023-09-02 13:01:32 +03:00
class MySimpleRange:
def __init__(self, stop):
self.stop = stop
def __iter__(self):
return MySimpleRangeIterator(self.stop)
class MySimpleRangeIterator:
def __init__(self, stop):
self.stop = stop
self.count = 0
def __iter__(self):
return self
def __next__(self):
self.count += 1
if self.count > self.stop:
raise StopIteration
return self.count - 1