My Simple Range example 2

This commit is contained in:
Mert Gör 🇹🇷 2023-09-02 13:01:32 +03:00
parent ba51432278
commit ea6431687e
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

View File

@ -0,0 +1,20 @@
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