Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class sequence_repeat:
- def __init__(self, sequence, number):
- self.sequence = sequence
- self.number = number
- self.idx = 0 # създаваме допълнителен атрибут self.idx = 0
- def __iter__(self):
- return self
- def __next__(self):
- if self.idx == self.number: # ако индекса стане равен на каунтъра, приключва
- raise StopIteration
- result = self.sequence[self.idx % len(self.sequence)] # ако стринга > каунтъра за да се върнем в началото на стринга
- # делим модулно индекаса на дължината на стринга, при 3 % 3 връща индекс 0, при 4 % 3, връща индекс 1 и т.н.
- self.idx += 1
- return result
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement