diff --git a/python-temel/MySimpleRange.4.py b/python-temel/MySimpleRange.4.py new file mode 100644 index 0000000..ebd2dd6 --- /dev/null +++ b/python-temel/MySimpleRange.4.py @@ -0,0 +1,28 @@ +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 + +r = MySimpleRange(10) +iterator = r.__iter__() +for i in iterator: + print(i, end=' ') +print() +for i in iterator: + print(i, end=' ')